Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lukmccall committed Feb 4, 2022
1 parent 7660d6d commit 26e19b5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package expo.modules.devlauncher.launcher.errors

import android.app.Activity
import android.app.Application
import android.content.Context
import android.net.Uri
import android.os.Bundle
import android.os.Process
Expand Down Expand Up @@ -123,7 +124,7 @@ class DevLauncherUncaughtExceptionHandler(

private fun getLogsUrl(): Uri {
val logsUrlFromManifest = controller.manifest?.getRawJson()?.optString("logUrl")
if (logsUrlFromManifest != null) {
if (logsUrlFromManifest.isNullOrEmpty()) {
return Uri.parse(logsUrlFromManifest)
}

Expand Down

0 comments on commit 26e19b5

Please sign in to comment.