Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/215b18903ec98f8c009ef53e9d0fca5ba1c3be1b?style=split&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge pull request from tidusjar/dev

1.7.1 with bug fixes
pull/242/head^2 v1.7.1
Jamie 9 years ago
commit 215b18903e

@ -122,7 +122,7 @@
$('#requestToken').click(function (e) { $('#requestToken').click(function (e) {
e.preventDefault(); e.preventDefault();
var url = createBaseUrl(base, "requestauth"); var url = createBaseUrl(base, "admin/requestauth");
var $form = $("#mainForm"); var $form = $("#mainForm");
$.ajax({ $.ajax({
type: $form.prop("method"), type: $form.prop("method"),
@ -149,7 +149,7 @@
function loadUserList() { function loadUserList() {
$('#users').html(""); $('#users').html("");
var url = "getusers"; var url = "admin/getusers";
url = createBaseUrl(base, url); url = createBaseUrl(base, url);
$.ajax({ $.ajax({
type: "Get", type: "Get",

@ -3,9 +3,9 @@ configuration: Release
assembly_info: assembly_info:
patch: true patch: true
file: '**\AssemblyInfo.*' file: '**\AssemblyInfo.*'
assembly_version: '1.7.0' assembly_version: '1.7.1'
assembly_file_version: '{version}' assembly_file_version: '{version}'
assembly_informational_version: '1.7.0' assembly_informational_version: '1.7.1'
before_build: before_build:
- cmd: appveyor-retry nuget restore - cmd: appveyor-retry nuget restore
build: build:

Loading…
Cancel
Save