Skip to content

Commit

Permalink
fix(frontend): 環境によってはMisskey Webが開けない問題を修正
Browse files Browse the repository at this point in the history
Fix #11846
  • Loading branch information
syuilo committed Sep 19, 2023
1 parent 09c00d0 commit 934e4be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
- Fix: タイムラインを下にスクロールしてノート画面に移動して再び戻ったら以前のスクロール位置を失う問題を修正
- Fix: Misskeyプラグインをインストールする際のAiScriptバージョンのチェックが0.14.0以降に対応していない問題を修正
- Fix: 他のサーバーのユーザーへ「メッセージを送信」した時の初期テキストのメンションが間違っている問題を修正
- Fix: 環境によってはMisskey Webが開けない問題を修正

### Server
- cacheRemoteFilesの初期値はfalseになりました
Expand Down
4 changes: 3 additions & 1 deletion packages/frontend/src/workers/test-webgl2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
*/

const canvas = globalThis.OffscreenCanvas && new OffscreenCanvas(1, 1);
const gl = canvas.getContext('webgl2');
// 環境によってはOffscreenCanvasが存在しないため
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
const gl = canvas?.getContext('webgl2');
if (gl) {
postMessage({ result: true });
} else {
Expand Down

0 comments on commit 934e4be

Please sign in to comment.