We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd9dcf4 commit acf7303Copy full SHA for acf7303
src/contentScripts/worker.js
@@ -49,6 +49,12 @@ function tryToGetReceivedPoints() {
49
if (attempts === maxAttempts) {
50
clearInterval(pointsInterval);
51
console.error('Failed to find the amount of gathered points');
52
+ // sending the default amount. For subbed people that would be incorrect, but that's better than loosing track of all of them
53
+ browser.runtime.sendMessage({
54
+ type: 'add_points',
55
+ bonus: 50,
56
+ channelId
57
+ })
58
return;
59
}
60
0 commit comments