mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-23 09:23:48 +01:00
チャートログの取得範囲の修正 (#5923)
This commit is contained in:
parent
90c1beca12
commit
79f2f9fac9
@ -382,8 +382,8 @@ export default abstract class Chart<T extends Record<string, any>> {
|
|||||||
const [y, m, d, h] = this.getCurrentDate();
|
const [y, m, d, h] = this.getCurrentDate();
|
||||||
|
|
||||||
const gt =
|
const gt =
|
||||||
span == 'day' ? subtractTimespan(DateUTC([y, m, d]), range, 'days') :
|
span == 'day' ? subtractTimespan(DateUTC([y, m, d]), range - 1, 'days') :
|
||||||
span == 'hour' ? subtractTimespan(DateUTC([y, m, d, h]), range, 'hours') :
|
span == 'hour' ? subtractTimespan(DateUTC([y, m, d, h]), range - 1, 'hours') :
|
||||||
null as never;
|
null as never;
|
||||||
|
|
||||||
// ログ取得
|
// ログ取得
|
||||||
|
Loading…
Reference in New Issue
Block a user