Skip to content

Commit

Permalink
Fix NPW on no given token
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesa2 committed Apr 2, 2024
1 parent 2e283f3 commit 07134eb
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 07134eb

Please sign in to comment.