mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-25 22:01:13 +00:00
Remove unused extra language issue.
This commit is contained in:
parent
4a89c24075
commit
7b6b47c7c8
2 changed files with 3 additions and 16 deletions
|
@ -76,20 +76,10 @@ server.get("/*", async (req, res) => {
|
|||
return res.redirect(`/404?err=${errCode}`);
|
||||
}
|
||||
|
||||
let acceptLang = req.headers["accept-language"]
|
||||
? req.headers["accept-language"].split(",")[0]
|
||||
: "en";
|
||||
let lang = site.my_user
|
||||
? site.my_user.local_user.lang == "browser"
|
||||
? acceptLang
|
||||
: "en"
|
||||
: acceptLang;
|
||||
|
||||
let isoData: IsoData = {
|
||||
path: req.path,
|
||||
site_res: site,
|
||||
routeData,
|
||||
lang,
|
||||
};
|
||||
|
||||
const wrapper = (
|
||||
|
@ -160,9 +150,9 @@ server.listen(Number(port), hostname, () => {
|
|||
console.log(`http://${hostname}:${port}`);
|
||||
});
|
||||
|
||||
function setForwardedHeaders(
|
||||
headers: IncomingHttpHeaders
|
||||
): { [key: string]: string } {
|
||||
function setForwardedHeaders(headers: IncomingHttpHeaders): {
|
||||
[key: string]: string;
|
||||
} {
|
||||
let out = {
|
||||
host: headers.host,
|
||||
};
|
||||
|
|
|
@ -9,9 +9,6 @@ export interface IsoData {
|
|||
path: string;
|
||||
routeData: any[];
|
||||
site_res: GetSiteResponse;
|
||||
// Lang and theme
|
||||
lang: string;
|
||||
// communities?: ListCommunitiesResponse;
|
||||
}
|
||||
|
||||
export interface ILemmyConfig {
|
||||
|
|
Loading…
Reference in a new issue