Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.

Commit

Permalink
Change number of seconds needed in captioning before presenting donat…
Browse files Browse the repository at this point in the history
…ion ask
  • Loading branch information
curtgrimes committed Oct 28, 2018
1 parent ec312b2 commit 558eeec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/store/modules/donation/index.js
Expand Up @@ -18,8 +18,8 @@ const actions = {
// Don't show it again for this many days
hasRecentDonation = dateIsWithinPastXDays(pastDonationDate, 14);
}
if (!hasRecentDonation && rootState.captioner.totalCaptioningSeconds >= 1) {

if (!hasRecentDonation && rootState.captioner.totalCaptioningSeconds >= 240) {
commit('SET_MESSAGE_SHOW', {on: true});
}
},
Expand Down

0 comments on commit 558eeec

Please sign in to comment.