summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages/flash
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-08-18 10:18:34 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-08-18 10:18:34 +0900
commite481205342fd24b7ef38cdc96c0510dc97bf1b70 (patch)
tree91ba6398c9b518785ce1ec8e654c07265706ba4f /packages/frontend/src/pages/flash
parentchore: preserve notes with local reactions (#16412) (diff)
downloadmisskey-e481205342fd24b7ef38cdc96c0510dc97bf1b70.tar.gz
misskey-e481205342fd24b7ef38cdc96c0510dc97bf1b70.tar.bz2
misskey-e481205342fd24b7ef38cdc96c0510dc97bf1b70.zip
enhance(frontend): update aiscript to 1.1.0
Diffstat (limited to 'packages/frontend/src/pages/flash')
-rw-r--r--packages/frontend/src/pages/flash/flash-edit.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/flash/flash-edit.vue b/packages/frontend/src/pages/flash/flash-edit.vue
index bf4911f648..d2c2621a35 100644
--- a/packages/frontend/src/pages/flash/flash-edit.vue
+++ b/packages/frontend/src/pages/flash/flash-edit.vue
@@ -88,7 +88,7 @@ let choices = [
]
// シードが「PlayID+ユーザーID+今日の日付」である乱数生成器を用意
-let random = Math:gen_rng(\`{THIS_ID}{USER_ID}{Date:year()}{Date:month()}{Date:day()}\`, { algorithm: 'rc4_legacy' })
+let random = Math:gen_rng(\`{THIS_ID}{USER_ID}{Date:year()}{Date:month()}{Date:day()}\`)
// ランダムに選択肢を選ぶ
let chosen = choices[random(0, (choices.len - 1))]