diff options
| author | Zephyrrus <[email protected]> | 2021-08-22 16:33:28 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-08-22 22:33:28 +0900 |
| commit | a8b985240d2be4d73dad0a0174b57f8b0652f846 (patch) | |
| tree | 832d9020560c68b82f7e01118f22a61159279cab /src/api/routes/service/configGET.js | |
| parent | Merge pull request #283 from Devices/patch-1 (diff) | |
| download | host.fuwn.me-a8b985240d2be4d73dad0a0174b57f8b0652f846.tar.xz host.fuwn.me-a8b985240d2be4d73dad0a0174b57f8b0652f846.zip | |
fix: anon upload and domain fix for album links (#292)
Diffstat (limited to 'src/api/routes/service/configGET.js')
| -rw-r--r-- | src/api/routes/service/configGET.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/api/routes/service/configGET.js b/src/api/routes/service/configGET.js index 4baf627..f69d9eb 100644 --- a/src/api/routes/service/configGET.js +++ b/src/api/routes/service/configGET.js @@ -21,7 +21,8 @@ class configGET extends Route { metaThemeColor: Util.config.metaThemeColor, metaDescription: Util.config.metaDescription, metaKeywords: Util.config.metaKeywords, - metaTwitterHandle: Util.metaTwitterHandle + metaTwitterHandle: Util.metaTwitterHandle, + domain: process.env.domain } }); } |