ClipboardService: fix invalid toast invocation

This commit is contained in:
ItsLemmy
2025-09-25 21:54:09 -04:00
parent b76a252b94
commit 95d059007e
+1 -1
View File
@@ -70,7 +70,7 @@ Singleton {
root.cliphistAvailable = false
// Show toast notification if feature is enabled but cliphist is missing
if (Settings.data.appLauncher.enableClipboardHistory) {
ToastService.showWarning(I18n.tr("toast.clipboard.unavailable"), I18n.tr("toast.clipboard.unavailable-desc"), false, 6000)
ToastService.showWarning(I18n.tr("toast.clipboard.unavailable"), I18n.tr("toast.clipboard.unavailable-desc"), 6000)
}
}
}