mirror of
https://github.com/go-gitea/gitea
synced 2024-11-17 15:44:25 +00:00
bugfix, suburl defaults to empty string when suburl is undefined
This commit is contained in:
parent
977779cdcf
commit
09c3c4e70c
@ -616,7 +616,7 @@ function initProfile() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
Gogs.AppSubUrl = $('head').data('suburl');
|
Gogs.AppSubUrl = $('head').data('suburl') || '';
|
||||||
initCore();
|
initCore();
|
||||||
if ($('#user-profile-setting').length) {
|
if ($('#user-profile-setting').length) {
|
||||||
initUserSetting();
|
initUserSetting();
|
||||||
|
Loading…
Reference in New Issue
Block a user