mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-03 17:02:13 +01:00
Fix copy&paste error in K9Receiver.java, update CHANGELOG.md
This commit is contained in:
parent
c768107db8
commit
17ba49374c
@ -1,5 +1,8 @@
|
|||||||
###Changelog
|
###Changelog
|
||||||
|
|
||||||
|
####Version 0.6.7 (next)
|
||||||
|
* Fix Crash when not having K9 Mail permissions (happens when installing K9 after Gadgetbridge) (#175)
|
||||||
|
|
||||||
####Version 0.6.6
|
####Version 0.6.6
|
||||||
* Mi Band: Huge performance improvement fetching activity data
|
* Mi Band: Huge performance improvement fetching activity data
|
||||||
* Mi Band: attempt at fixing connection problems (#156)
|
* Mi Band: attempt at fixing connection problems (#156)
|
||||||
|
@ -60,8 +60,8 @@ public class K9Receiver extends BroadcastReceiver {
|
|||||||
c = context.getContentResolver().query(k9Uri, messagesProjection, null, null, null);
|
c = context.getContentResolver().query(k9Uri, messagesProjection, null, null, null);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
notificationSpec.sender = "Permission Error?";
|
|
||||||
notificationSpec.sender = "Gadgetbridge";
|
notificationSpec.sender = "Gadgetbridge";
|
||||||
|
notificationSpec.subject = "Permission Error?";
|
||||||
notificationSpec.body = "Please reinstall Gadgerbridge to enable K-9 Mail notifications";
|
notificationSpec.body = "Please reinstall Gadgerbridge to enable K-9 Mail notifications";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user