Skip to content

Commit

Permalink
Merge pull request #199 from hannesa2/FixNPE
Browse files Browse the repository at this point in the history
Fix NPW on no given token
  • Loading branch information
hannesa2 authored Apr 2, 2024
2 parents 2e283f3 + 07134eb commit bbf4244
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class DownloadWorker(private val appContext: Context, workerParams: WorkerParame
// Get the input
val currentVersion = inputData.getString(CURRENT_VERSION)!!
val repoUrl = inputData.getString(REPO_URL)!!
val token = inputData.getString(TOKEN)!!
val token = inputData.getString(TOKEN)

val d = async {
check(currentVersion, repoUrl, token)
Expand Down

0 comments on commit bbf4244

Please sign in to comment.