-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Notifications not being delivered
Some notifications were not delivered since the main activity was not alive listening to the broadcast signal. The worker now creates the notifications once the polling has concluded so they are never missed.
- Loading branch information
Showing
7 changed files
with
65 additions
and
67 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Fixed | ||
|
||
* Some notifications not being delivered | ||
* Do not cancel work on startup if no change has been made to poll interval |
This file contains 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
This file contains 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
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "you-have-mail-mobile" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
edition = "2021" | ||
authors = ["Leander Beernaert <[email protected]>"] | ||
license = "AGPL-3.0-only" | ||
|
@@ -14,6 +14,7 @@ name = "youhavemail" | |
[dependencies] | ||
uniffi = { version = "0.28.0", features = ["cli"] } | ||
you-have-mail-common = { git = "https://github.com/LeanderBB/you-have-mail-common"} | ||
# you-have-mail-common = { path = "../../you-have-mail-common/youhavemail"} | ||
thiserror = "1" | ||
parking_lot = "0.12" | ||
tracing = "0.1" | ||
|
This file contains 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