소스 검색

VLCAppDelegate: Return true when URL is handled properly

Soomin Lee 5 년 전
부모
커밋
475ceb08f5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Sources/VLCAppDelegate.m

+ 1 - 1
Sources/VLCAppDelegate.m

@@ -179,7 +179,7 @@ didFailToContinueUserActivityWithType:(NSString *)userActivityType
     for (id<VLCURLHandler> handler in URLHandlers.handlers) {
         if ([handler canHandleOpenWithUrl:url options:options]) {
             if ([handler performOpenWithUrl:url options:options]) {
-                break;
+                return YES;
             }
         }
     }