mirror of
https://github.com/afollestad/nock-nock.git
synced 2025-08-04 07:08:42 +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 {
|
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")
|
log("Check job for site $siteId is done")
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue