Fixed incorrect PRO account validation

This commit is contained in:
Eduard Urbach 2019-11-18 18:59:04 +09:00
parent cfac7b6204
commit a4fcd3c2f4
Signed by: akyoto
GPG Key ID: C874F672B1AF20C0

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() {