Fixed incorrect PRO account validation
This commit is contained in:
parent
cfac7b6204
commit
a4fcd3c2f4
@ -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() {
|
||||||
|
Loading…
Reference in New Issue
Block a user