fix: platform selector + notifications (Round 21)#4
Merged
wallydz-bot[bot] merged 3 commits intomasterfrom Feb 25, 2026
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes two critical bugs
Bug 1: App opened messenger.com directly instead of platform selector
dist/index.htmlhad hardcodedwindow.location.href = "https://www.messenger.com"— the TypeScript frontend was never set up with a build systemvite.config.ts, updatedpackage.jsonscripts). Frontend now compiles fromsrc/TypeScript todist/dist/index.htmlnow serves the platform selector with bundled JS atdist/assets/main-*.jsBug 2: Notifications broken on Windows / Mac / Linux
Three simultaneous failures:
notification-interceptor.tsimported from@tauri-apps/api/notification— Tauri v1 API, removed in v2@tauri-apps/plugin-notificationinvokefrom@tauri-apps/api/tauri— Tauri v1, removed in v2@tauri-apps/api/coreinvoke('handle_notification')but no such Rust command existedhandle_notificationTauri command tonotifications.rs, registered inlib.rsVerification
cargo check✅ 0 errors 0 warningsdist/index.html✅ Platform selector, no redirectdist/assets/main-*.js✅ Bundled platform selector + notification JS