mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-22 22:23:34 -07:00
Use proper empty string constant
This commit is contained in:
parent
8b4a0928d9
commit
b4faf54933
1 changed files with 2 additions and 2 deletions
|
@ -754,7 +754,7 @@ namespace Ombi.Schedule.Jobs.Ombi
|
|||
if (episodes.Count >= tvInfo.number_of_episodes)
|
||||
{
|
||||
// do not list individual episodes when the series is complete
|
||||
return "";
|
||||
return string.Empty;
|
||||
}
|
||||
|
||||
var sb = new StringBuilder();
|
||||
|
@ -774,7 +774,7 @@ namespace Ombi.Schedule.Jobs.Ombi
|
|||
if (season.Episodes.Count >= season.Header.episode_count)
|
||||
{
|
||||
// do not list individual episodes when the season is complete
|
||||
episodeList = "";
|
||||
episodeList = string.Empty;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue