diff options
| author | 2014-02-15 15:29:00 +0100 | |
|---|---|---|
| committer | 2014-02-15 15:29:00 +0100 | |
| commit | 7fd04c046a3c70b9ec52a04dd9b397f39b26c487 (patch) | |
| tree | f2d7335d0870610a0accbde5607566b763f658c4 | |
| parent | 0a5a7d780722f0dc9e12a7cad43a3b74ea812257 (diff) | |
Oops, fix bug auto_actualize_feeds
See 0a5a7d780722f0dc9e12a7cad43a3b74ea812257
| -rw-r--r-- | p/scripts/main.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/p/scripts/main.js b/p/scripts/main.js index ba1f9cf9d..92f98ab28 100644 --- a/p/scripts/main.js +++ b/p/scripts/main.js @@ -670,12 +670,11 @@ function init_actualize() { $("#actualize").click(function () { $.getScript('./?c=javascript&a=actualize').done(function () { if (auto && feed_count < 1) { + auto = false; return; } updateFeeds(); - - auto = false; }); return false; }); |
