diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index cd99dba4a..15b94bd78 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -10363,7 +10363,7 @@ j = j < 7 ? j : 7; } ThreadUpdater.seconds = Conf['Optional Increase'] ? (cur = [0, 5, 10, 15, 20, 30, 60, 90, 120, 240, 300][j] > i) ? cur : i : i; - ThreadUpdater.set('timer', ThreadUpdater.seconds); + ThreadUpdater.set('timer', ThreadUpdater.seconds++); clearTimeout(ThreadUpdater.timeoutID); return ThreadUpdater.timeout(); }, @@ -15775,9 +15775,9 @@ 'Announcement Hiding': PSAHiding, 'Fourchan thingies': Fourchan, 'Color User IDs': IDColor, - 'Reveal Spoilers': RemoveSpoilers, 'Custom CSS': CustomCSS, 'Linkify': Linkify, + 'Reveal Spoilers': RemoveSpoilers, 'Resurrect Quotes': Quotify, 'Filter': Filter, 'Thread Hiding Buttons': ThreadHiding, diff --git a/builds/crx/script.js b/builds/crx/script.js index 1bf5bba6b..49cea8caa 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -10353,7 +10353,7 @@ j = j < 7 ? j : 7; } ThreadUpdater.seconds = Conf['Optional Increase'] ? (cur = [0, 5, 10, 15, 20, 30, 60, 90, 120, 240, 300][j] > i) ? cur : i : i; - ThreadUpdater.set('timer', ThreadUpdater.seconds); + ThreadUpdater.set('timer', ThreadUpdater.seconds++); clearTimeout(ThreadUpdater.timeoutID); return ThreadUpdater.timeout(); }, @@ -15763,9 +15763,9 @@ 'Announcement Hiding': PSAHiding, 'Fourchan thingies': Fourchan, 'Color User IDs': IDColor, - 'Reveal Spoilers': RemoveSpoilers, 'Custom CSS': CustomCSS, 'Linkify': Linkify, + 'Reveal Spoilers': RemoveSpoilers, 'Resurrect Quotes': Quotify, 'Filter': Filter, 'Thread Hiding Buttons': ThreadHiding, diff --git a/src/General/Main.coffee b/src/General/Main.coffee index 8e3a52cdc..ca5ae74a8 100644 --- a/src/General/Main.coffee +++ b/src/General/Main.coffee @@ -122,9 +122,9 @@ Main = 'Announcement Hiding': PSAHiding 'Fourchan thingies': Fourchan 'Color User IDs': IDColor - 'Reveal Spoilers': RemoveSpoilers 'Custom CSS': CustomCSS 'Linkify': Linkify + 'Reveal Spoilers': RemoveSpoilers 'Resurrect Quotes': Quotify 'Filter': Filter 'Thread Hiding Buttons': ThreadHiding diff --git a/src/Monitoring/ThreadUpdater.coffee b/src/Monitoring/ThreadUpdater.coffee index 4e957a04f..0265197f1 100755 --- a/src/Monitoring/ThreadUpdater.coffee +++ b/src/Monitoring/ThreadUpdater.coffee @@ -176,7 +176,7 @@ ThreadUpdater = if cur = [0, 5, 10, 15, 20, 30, 60, 90, 120, 240, 300][j] > i then cur else i else i - ThreadUpdater.set 'timer', ThreadUpdater.seconds + ThreadUpdater.set 'timer', ThreadUpdater.seconds++ clearTimeout ThreadUpdater.timeoutID ThreadUpdater.timeout()