ValidateJob must retrieve the job ID as a long

This commit is contained in:
Aidan Follestad 2018-12-07 00:19:41 -08:00
parent 76a5a46454
commit 3b1aae66f3

View file

@ -152,7 +152,7 @@ class ValidationJob : JobService() {
}
override fun onStopJob(params: JobParameters): Boolean {
val siteId = params.extras.getInt(KEY_SITE_ID)
val siteId = params.extras.getLong(KEY_SITE_ID)
log("Check job for site $siteId is done")
return true
}