mirror of
https://github.com/afollestad/nock-nock.git
synced 2025-04-20 19:45:17 +00:00
ValidateJob must retrieve the job ID as a long
This commit is contained in:
parent
76a5a46454
commit
3b1aae66f3
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue