summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-18 10:22:52 +0100
committerAndrew Dolgov <[email protected]>2009-01-18 10:22:52 +0100
commitf11b8a3480f3f72b6396f0a9e6e1c1d3aaf30543 (patch)
tree83a2d4dd338be1842ee54e1bb47000da736c5331 /tt-rss.js
parent7f0ceeb0e0071c49835e32912db24c916530dfd4 (diff)
disable old-style label editor call for new labels
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tt-rss.js b/tt-rss.js
index bac3fd9d6..7c5f8e086 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -792,7 +792,7 @@ function editFeedDlg(feed) {
return;
}
- if ((feed <= 0 && feed > -10) || activeFeedIsCat() || tagsAreDisplayed()) {
+ if ((feed <= 0) || activeFeedIsCat() || tagsAreDisplayed()) {
alert(__("You can't edit this kind of feed."));
return;
}