- Jul 03, 2023
- Jul 02, 2023
- Jul 01, 2023
-
-
syuilo authored
-
- Jun 30, 2023
-
-
tamaina authored
-
- Jun 28, 2023
-
-
Kagami Sascha Rosylight authored
* feat(backend): accept OAuth bearer token * refactor * Update packages/backend/src/server/api/ApiCallService.ts Co-authored-by:
Acid Chicken (硫酸鶏) <root@acid-chicken.com> * Update packages/backend/src/server/api/ApiCallService.ts Co-authored-by:
Acid Chicken (硫酸鶏) <root@acid-chicken.com> * fix * kind: permission for account moved error * also for suspended error * Update packages/backend/src/server/api/StreamingApiServerService.ts Co-authored-by:
Acid Chicken (硫酸鶏) <root@acid-chicken.com> --------- Co-authored-by:
Acid Chicken (硫酸鶏) <root@acid-chicken.com> Co-authored-by:
syuilo <Syuilotan@yahoo.co.jp>
-
- Jun 26, 2023
-
-
Kagami Sascha Rosylight authored
-
Yuriha authored
* Suppress ReferenceError on some environments (i.e. older iOS) * fix * fix * lint * adopt suggestion by acid-chicken
-
Kagami Sascha Rosylight authored
-
- Jun 25, 2023
-
-
syuilo authored
* refactor(backend): use node16 for moduleResolution * update deps * Update tsconfig.json *
✌️ * revive KEYWORD * restore strict-event-emitter-types dependency * restore ms dependency * cancel redundant import reorder * fix * Delete ms.ts * remove rndstr --------- Co-authored-by:Kagami Sascha Rosylight <saschanaz@outlook.com>
-
Kagami Sascha Rosylight authored
* refactor(backend): replace rndstr with secureRndstr * Update pnpm-lock.yaml * .js
-
- Jun 24, 2023
-
-
Kagami Sascha Rosylight authored
* chore(backend, misskey-js): add type for signup * rerun
-
Kagami Sascha Rosylight authored
* refactor(backend): replace private-ip with ipaddr.js * restore ip-cidr
-
Kagami Sascha Rosylight authored
-
Kagami Sascha Rosylight authored
-
syuilo authored
-
syuilo authored
-
syuilo authored
Resolve #11007
-
syuilo authored
-
- Jun 23, 2023
- Jun 22, 2023
-
-
Balazs Nadasdi authored
Error message: ``` ReplyError: ERR value is not an integer or out of range script: 720d973b3877f92b4fb3285ced83c97cdd204979, on @user_script:209. ``` The whole error can be tracked back to one of the arguments, which is `Infinity` in the codebase, but it has to be a number. The documentation in bullmq says `0` is unlimited[^1], and bullmq tries to parse the argument with `tonumber` which returns with `-9223372036854775808` if the argument is `"Infinity"` which is out of bound. ``` 127.0.0.1:6379> eval 'return tonumber(ARGV[3])' '2' 'slippy.xyz:queue:inbox:inbox:delayed' 'slippy.xyz:queue:inbox:inbox:events' 'slippy.xyz:queue:inbox:inbox:' '1687183763944' Infinity 'delayed' (integer) -9223372036854775808 127.0.0.1:6379> ``` [^1]: https://github.com/taskforcesh/bullmq/blob/master/src/commands/cleanJobsInSet-2.lua#L10 Signed-off-by:
Efertone <efertone@pm.me>
-
- Jun 20, 2023
-
-
tamaina authored
-