aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/User.ts
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-10-15 09:48:06 +0200
committerLibravatar GitHub <noreply@github.com>2021-10-15 09:48:06 +0200
commit14d2364fc69e0222133115c55a36286986006098 (patch)
tree9e9b3c41ef742bbe87ca1632b292c67043051957 /src/models/User.ts
parent5.6.3-nightly.34 [skip ci] (diff)
downloadferdium-app-14d2364fc69e0222133115c55a36286986006098.tar.gz
ferdium-app-14d2364fc69e0222133115c55a36286986006098.tar.zst
ferdium-app-14d2364fc69e0222133115c55a36286986006098.zip
chore: update eslint setup (#2074)
Diffstat (limited to 'src/models/User.ts')
-rw-r--r--src/models/User.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/models/User.ts b/src/models/User.ts
index a04d46d3c..571f1f847 100644
--- a/src/models/User.ts
+++ b/src/models/User.ts
@@ -59,7 +59,8 @@ export default class User {
59 this.beta = data.beta || this.beta; 59 this.beta = data.beta || this.beta;
60 this.locale = data.locale || this.locale; 60 this.locale = data.locale || this.locale;
61 61
62 this.isSubscriptionOwner = data.isSubscriptionOwner || this.isSubscriptionOwner; 62 this.isSubscriptionOwner =
63 data.isSubscriptionOwner || this.isSubscriptionOwner;
63 64
64 this.team = data.team || this.team; 65 this.team = data.team || this.team;
65 } 66 }