diff options
| -rw-r--r-- | app/lib/backend.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/backend.js b/app/lib/backend.js index 601b0e7b64..158828ab62 100644 --- a/app/lib/backend.js +++ b/app/lib/backend.js @@ -117,7 +117,7 @@ export default class Backend extends EventEmitter { let res = { account }; if(account.startsWith('1111')) { // accounts starting with 1111 expire in one month - res.paidUntil = moment().add(1, 'month').millisecond(0).toISOString(); + res.paidUntil = moment().startOf('day').add(15, 'days').toISOString(); } else if(account.startsWith('2222')) { // expired in 2013 res.paidUntil = moment('2013-01-01').toISOString(); } else if(account.startsWith('3333')) { // expire in 2038 |
