summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Branson <andrew.branson@jolla.com>2026-02-19 19:10:37 +0100
committerAndrew Branson <andrew.branson@jolla.com>2026-02-19 19:10:37 +0100
commit2100e260e58e12cef347ecf17e3aad9422d22e86 (patch)
tree89a5a6a8fb827ed8e59713290ddc14bca42853e8
parent459245e022e67c9e25b7aae9e145e89b66a50fac (diff)
Notif tweak
-rw-r--r--buteo-plugins/buteo-sync-plugin-mastodon-notifications/mastodon.Notifications.xml2
-rw-r--r--settings/accounts/ui/MastodonSettingsDisplay.qml6
2 files changed, 6 insertions, 2 deletions
diff --git a/buteo-plugins/buteo-sync-plugin-mastodon-notifications/mastodon.Notifications.xml b/buteo-plugins/buteo-sync-plugin-mastodon-notifications/mastodon.Notifications.xml
index 2843180..0b6bad4 100644
--- a/buteo-plugins/buteo-sync-plugin-mastodon-notifications/mastodon.Notifications.xml
+++ b/buteo-plugins/buteo-sync-plugin-mastodon-notifications/mastodon.Notifications.xml
@@ -8,7 +8,7 @@
<key name="hidden" value="true" />
<key name="displayname" value="Mastodon Notifications"/>
- <schedule enabled="true" interval="30" days="1,2,3,4,5,6,7" syncconfiguredtime="" time="" />
+ <schedule enabled="true" interval="15" days="1,2,3,4,5,6,7" syncconfiguredtime="" time="" />
<profile name="mastodon-notifications" type="client" >
<key name="Sync Direction" value="from-remote" />
diff --git a/settings/accounts/ui/MastodonSettingsDisplay.qml b/settings/accounts/ui/MastodonSettingsDisplay.qml
index 082bf04..ece9a41 100644
--- a/settings/accounts/ui/MastodonSettingsDisplay.qml
+++ b/settings/accounts/ui/MastodonSettingsDisplay.qml
@@ -106,7 +106,11 @@ StandardAccountSettingsDisplay {
id: syncServicesRepeater
TextSwitch {
checked: model.enabled
- text: model.displayName
+ text: model.serviceName === "mastodon-microblog"
+ ? "Posts"
+ : (model.serviceName === "mastodon-notifications"
+ ? "Notifications"
+ : model.displayName)
description: model.serviceName === "mastodon-microblog"
? "Show Mastodon posts in the Events view."
: (model.serviceName === "mastodon-notifications"