mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-23 06:25:24 -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)
|
if (episodes.Count >= tvInfo.number_of_episodes)
|
||||||
{
|
{
|
||||||
// do not list individual episodes when the series is complete
|
// do not list individual episodes when the series is complete
|
||||||
return "";
|
return string.Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
var sb = new StringBuilder();
|
var sb = new StringBuilder();
|
||||||
|
@ -774,7 +774,7 @@ namespace Ombi.Schedule.Jobs.Ombi
|
||||||
if (season.Episodes.Count >= season.Header.episode_count)
|
if (season.Episodes.Count >= season.Header.episode_count)
|
||||||
{
|
{
|
||||||
// do not list individual episodes when the season is complete
|
// do not list individual episodes when the season is complete
|
||||||
episodeList = "";
|
episodeList = string.Empty;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue