mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-13 04:06:31 +01:00
Add early returns
This commit is contained in:
@@ -454,7 +454,7 @@ namespace Jellyfin.LiveTv.Listings
|
||||
{
|
||||
var token = await GetToken(info, cancellationToken).ConfigureAwait(false);
|
||||
|
||||
if (programIds.Count == 0)
|
||||
if (string.IsNullOrEmpty(token) || programIds.Count == 0)
|
||||
{
|
||||
return [];
|
||||
}
|
||||
@@ -795,7 +795,10 @@ namespace Jellyfin.LiveTv.Listings
|
||||
|
||||
var token = await GetToken(info, cancellationToken).ConfigureAwait(false);
|
||||
|
||||
ArgumentException.ThrowIfNullOrEmpty(token);
|
||||
if (string.IsNullOrEmpty(token))
|
||||
{
|
||||
return [];
|
||||
}
|
||||
|
||||
using var options = new HttpRequestMessage(HttpMethod.Get, ApiUrl + "/lineups/" + listingsId);
|
||||
options.Headers.TryAddWithoutValidation("token", token);
|
||||
|
||||
Reference in New Issue
Block a user