Fixed a circular reference issue

This commit is contained in:
tidusjar 2016-06-22 13:50:17 +01:00
parent 63e0d0e531
commit f834e9635c
2 changed files with 2 additions and 2 deletions

View file

@ -148,7 +148,7 @@ namespace PlexRequests.UI.Modules
Get["/authentication", true] = async (x, ct) => await Authentication();
Post["/authentication", true] = async (x, ct) => await SaveAuthentication();
Post["/"] = _ => SaveAdmin();
Post["/", true] = async (x, ct) => await SaveAdmin();
Post["/requestauth"] = _ => RequestAuthToken();