feat(settings): display notifications URL in recents

This commit is contained in:
FineFindus
2024-05-15 15:37:33 +02:00
parent 1d45899f8c
commit 6faa497569

View File

@@ -363,4 +363,9 @@ public class SettingsNotificationsFragment extends BaseSettingsFragment<Void>{
rebindItem(unifiedPushItem); rebindItem(unifiedPushItem);
}).setOnCancelListener(d->rebindItem(unifiedPushItem)).show(); }).setOnCancelListener(d->rebindItem(unifiedPushItem)).show();
} }
@Override
public Uri getWebUri(Uri.Builder base) {
return base.path("/settings/preferences/notifications").build();
}
} }