summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"