Return NoResult only when request doesn't have a token.

This commit is contained in:
crobibero
2020-12-01 14:47:42 -07:00
parent 38b3b4f867
commit cd459c51f3
4 changed files with 17 additions and 6 deletions

View File

@@ -58,5 +58,10 @@ namespace MediaBrowser.Controller.Net
/// Gets or sets a value indicating whether the token is authenticated.
/// </summary>
public bool IsAuthenticated { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the request has a token.
/// </summary>
public bool HasToken { get; set; }
}
}