mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
Revert "Eliminate if-statement (#3556)"
This reverts commit fb8b0c291dff0bec2aca85fda34ebff9c8c49b91.
This commit is contained in:
parent
7bd67daf07
commit
3fc3893abc
1 changed files with 5 additions and 1 deletions
|
@ -61,7 +61,11 @@ export default abstract class Chart<T> {
|
|||
|
||||
constructor(name: string, grouped = false) {
|
||||
this.collection = db.get<Log<T>>(`chart.${name}`);
|
||||
this.collection.createIndex({ span: -1, date: -1, group: grouped ? -1 : undefined }, { unique: true });
|
||||
if (grouped) {
|
||||
this.collection.createIndex({ span: -1, date: -1, group: -1 }, { unique: true });
|
||||
} else {
|
||||
this.collection.createIndex({ span: -1, date: -1 }, { unique: true });
|
||||
}
|
||||
}
|
||||
|
||||
@autobind
|
||||
|
|
Loading…
Reference in a new issue