mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01:00
Fix ROOT_URL detection for URLs without trailing slash (#20503)
This commit is contained in:
parent
0a32bd56eb
commit
39b2ede930
1 changed files with 2 additions and 1 deletions
|
@ -389,7 +389,8 @@ export function initGlobalButtons() {
|
|||
*/
|
||||
export function checkAppUrl() {
|
||||
const curUrl = window.location.href;
|
||||
if (curUrl.startsWith(appUrl)) {
|
||||
// some users visit "https://domain/gitea" while appUrl is "https://domain/gitea/", there should be no warning
|
||||
if (curUrl.startsWith(appUrl) || `${curUrl}/` === appUrl) {
|
||||
return;
|
||||
}
|
||||
if (document.querySelector('.page-content.install')) {
|
||||
|
|
Loading…
Reference in a new issue