Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion desktop/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"unreleased": [
"Fixed editing a conversation title not saving"
"Fixed editing a conversation title not saving",
"Fixed misleading \"recordings aren't lost\" copy on the monthly-limit popup when the menu-bar Screen Capture or Audio Recording toggle was the trigger"
],
"releases": [
{
Expand Down
8 changes: 7 additions & 1 deletion desktop/Desktop/Sources/UsageLimitPopupView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,13 @@ struct UsageLimitPopupView: View {
case "chat", "floating_bar":
return "You've hit your monthly limit. Upgrade to keep chatting with Omi without restrictions."
default:
return "You've hit your monthly limit. Upgrade to make sure your new recordings aren't lost."
// Covers "trial_expired" (menu-bar toggles in OmiApp.swift) and any
// future caller. The previous default copy talked about recordings,
// which was misleading for grandfathered Neo users whose listening
// was never actually at risk — they were tripping a stale
// isPaywalled flag (now self-healed by #7517) while at their chat
// cap, and the recording-loss wording read as a data-loss threat.
return "You've hit your monthly limit. Upgrade to keep using Omi without restrictions."
}
}

Expand Down
Loading