thunderbird-patch-review
Simple email patch review tool for Thunderbird
git clone git://mccd.space/thunderbird-patch-reviewcommit 17193d1dc33d652e8ed1502aab3ad48178199a4a
parent b5b3f807e5f4cb857c8bcd1bcb9bbaabfd0d4aff
Author: Pi Agent <agent@pi.local>
Date: Sat, 18 Jul 2026 22:42:02 +0200
review: shorten Apply's no-repo error to "Choose a git repository"
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/extension/review/review.js b/extension/review/review.js
@@ -624,7 +624,7 @@ async function applySeries(mode) {
const repo = state.repo;
if (!repo || $("#repo-path").classList.contains("error")) {
- showStatus("Choose a valid git repository with Browse… first.", { error: true });
+ showStatus("Choose a git repository", { error: true });
return;
}