瀏覽代碼

android: ForegroundService: Handle null intent.

bunnei 3 年之前
父節點
當前提交
9ca8687b5f
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/ForegroundService.kt

+ 4 - 1
src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/ForegroundService.kt

@@ -52,7 +52,10 @@ class ForegroundService : Service() {
         showRunningNotification()
     }
 
-    override fun onStartCommand(intent: Intent, flags: Int, startId: Int): Int {
+    override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
+        if (intent == null) {
+            return START_NOT_STICKY;
+        }
         if (intent.action == ACTION_STOP) {
             NotificationManagerCompat.from(this).cancel(EMULATION_RUNNING_NOTIFICATION)
             stopForeground(STOP_FOREGROUND_REMOVE)