Jake Vanderwerf
2025-11-23 d7dbe7fee362d587dfc334135d9581b6216a4295
assets/js/concise/FrontendVotes.js
@@ -1,11 +1,11 @@
class FrontendVotes {
   constructor() {
      // Initialize DataStore for queue persistence
      this.store = new window.jvbStore({
         name: 'favourites',
         endpoint: 'favourites',
      this.store = window.jvbStore.register('votes',
         {
            endpoint: 'votes',
         useIndexedDB: true,
         TTL: Infinity,
            TTL: 6 * 60 * 1000,
         showLoading: false
      });
   }