Your ROOT_URL in app.ini is unix://git.lalonde.me:3000/ but you are visiting https://git.lalonde.me/matth/fw-daemon/commit/00a405b2694ce893e345fe253b670f62201498e8 You should set ROOT_URL correctly, otherwise the web may not work correctly.
pull/41/merge
Donncha O' Cearbhaill 8 years ago committed by GitHub
commit 00a405b269

@ -67,7 +67,7 @@ func loadDesktopFile(path string) {
} else if len(line) > 0 && line[0] == '[' {
inDE = false
}
if inDE && strings.HasPrefix(line, "Exec=") {
if inDE && len(line) > 5 && strings.HasPrefix(line, "Exec=") {
exec = strings.Fields(line[5:])[0]
}
if inDE && strings.HasPrefix(line, "Icon=") {

Loading…
Cancel
Save