Skip to content
This repository was archived by the owner on Oct 26, 2024. It is now read-only.

Commit 0af87e2

Browse files
authored
fix(youtube/microg-support): open download link if Vanced MicroG is missing (#290)
1 parent 6960b0b commit 0af87e2

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

app/src/main/java/app/revanced/integrations/patches/MicroGSupport.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ public static void checkAvailability() {
2626
Toast.makeText(context, str("microg_not_installed_warning"), Toast.LENGTH_LONG).show();
2727

2828
var intent = new Intent(Intent.ACTION_VIEW);
29+
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2930
intent.setData(Uri.parse(VANCED_MICROG_DOWNLOAD_LINK));
3031
context.startActivity(intent);
3132
}

0 commit comments

Comments
 (0)