diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-24 14:40:22 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-24 14:40:22 +0900 |
| commit | 7115bd46ff1dcae14455633ae89eb3e1fffc0aec (patch) | |
| tree | 581f7676c007a7317cb300341f327ef3bf6b1c77 | |
| parent | Merge branch 'develop' (diff) | |
| parent | 12.89.2 (diff) | |
| download | misskey-7115bd46ff1dcae14455633ae89eb3e1fffc0aec.tar.gz misskey-7115bd46ff1dcae14455633ae89eb3e1fffc0aec.tar.bz2 misskey-7115bd46ff1dcae14455633ae89eb3e1fffc0aec.zip | |
Merge branch 'develop'
| -rw-r--r-- | CHANGELOG.md | 5 | ||||
| -rw-r--r-- | package.json | 2 | ||||
| -rw-r--r-- | src/server/web/boot.js | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e8add521b..205c780c2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ --> +## 12.89.2 (2021/08/24) + +### Bugfixes +- カスタムCSSを有効にしているとエラーになる問題を修正 + ## 12.89.1 (2021/08/24) ### Improvements diff --git a/package.json b/package.json index b085bf1c8c..1f9baa3ca2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "misskey", "author": "syuilo <syuilotan@yahoo.co.jp>", - "version": "12.89.1", + "version": "12.89.2", "codename": "indigo", "repository": { "type": "git", diff --git a/src/server/web/boot.js b/src/server/web/boot.js index 7a41ae2555..a3a0685669 100644 --- a/src/server/web/boot.js +++ b/src/server/web/boot.js @@ -109,7 +109,7 @@ if (customCss && customCss.length > 0) { const style = document.createElement('style'); style.innerHTML = customCss; - head.appendChild(style); + document.head.appendChild(style); } // eslint-disable-next-line no-inner-declarations |