Skip to content

Commit

Permalink
enhance(frontend): AiScriptからMisskeyサーバーAPIを呼び出す際の制限を撤廃
Browse files Browse the repository at this point in the history
Resolve #7123
  • Loading branch information
syuilo committed Sep 1, 2023
1 parent f75ee1e commit 724ed47
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
- 絵文字ピッカーの検索の表示件数を100件に増加
- 投稿フォームのプレビューの表示状態を記憶するように
- ノート詳細ページ読み込み時のパフォーマンスを改善
- AiScriptからMisskeyサーバーAPIを呼び出す際の制限を撤廃
- Enhance: ユーザーメニューでスイッチでユーザーリストに追加・削除できるように
- Enhance: 自分が押したリアクションのデザインを改善
- Enhance: ノート検索にローカルのみ検索可能なオプションの追加
Expand Down
3 changes: 0 additions & 3 deletions packages/frontend/src/scripts/aiscript/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import { customEmojis } from '@/custom-emojis';
import { lang } from '@/config';

export function createAiScriptEnv(opts) {
let apiRequests = 0;
return {
USER_ID: $i ? values.STR($i.id) : values.NULL,
USER_NAME: $i ? values.STR($i.name) : values.NULL,
Expand Down Expand Up @@ -40,8 +39,6 @@ export function createAiScriptEnv(opts) {
// バグがあればundefinedもあり得るため念のため
if (typeof token.value !== 'string') throw new Error('invalid token');
}
apiRequests++;
if (apiRequests > 16) return values.NULL;
const res = await os.api(ep.value, utils.valToJs(param), token ? token.value : (opts.token ?? null));
return utils.jsToVal(res);
}),
Expand Down

0 comments on commit 724ed47

Please sign in to comment.