Fixed incorrect PRO account validation

This commit is contained in:
2019-11-18 18:59:04 +09:00
parent cfac7b6204
commit a4fcd3c2f4

View File

@ -8,7 +8,7 @@ export default class User {
} }
public IsPro(): boolean { public IsPro(): boolean {
return new Date() > new Date(this.proExpires) return new Date() < new Date(this.proExpires)
} }
private async sync() { private async sync() {