Skip to content

Commit

Permalink
Merge pull request #235 from tidusjar/dev
Browse files Browse the repository at this point in the history
1.7.1 with bug fixes
  • Loading branch information
Jamie committed May 24, 2016
2 parents c64a1d2 + 9922657 commit 215b189
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions PlexRequests.UI/Views/Admin/Authentication.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
$('#requestToken').click(function (e) {
e.preventDefault();
var url = createBaseUrl(base, "requestauth");
var url = createBaseUrl(base, "admin/requestauth");
var $form = $("#mainForm");
$.ajax({
type: $form.prop("method"),
Expand All @@ -149,7 +149,7 @@
function loadUserList() {
$('#users').html("");
var url = "getusers";
var url = "admin/getusers";
url = createBaseUrl(base, url);
$.ajax({
type: "Get",
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ configuration: Release
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '1.7.0'
assembly_version: '1.7.1'
assembly_file_version: '{version}'
assembly_informational_version: '1.7.0'
assembly_informational_version: '1.7.1'
before_build:
- cmd: appveyor-retry nuget restore
build:
Expand Down

0 comments on commit 215b189

Please sign in to comment.