aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/AudioBook/AudioBookFilePathParser.cs
diff options
context:
space:
mode:
authorStepan <ste.martinek+git@gmail.com>2020-11-01 13:28:43 +0100
committerStepan <ste.martinek+git@gmail.com>2020-11-01 13:28:43 +0100
commit6437cf69508076bab2d62bbe887f12b72d02f7b3 (patch)
tree93a2d042741b60a882ec9f70fa4e0eed8e2d35c7 /Emby.Naming/AudioBook/AudioBookFilePathParser.cs
parent60b49e67eafd356d1276f43de1a3f1f2fe52fe3f (diff)
Removed Success property from AudioBookFilePathParserResult, since it was unused and consider only audiobooks that have chapter/page number in name makes no sense
Diffstat (limited to 'Emby.Naming/AudioBook/AudioBookFilePathParser.cs')
-rw-r--r--Emby.Naming/AudioBook/AudioBookFilePathParser.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/Emby.Naming/AudioBook/AudioBookFilePathParser.cs b/Emby.Naming/AudioBook/AudioBookFilePathParser.cs
index 14edd6492..56580f194 100644
--- a/Emby.Naming/AudioBook/AudioBookFilePathParser.cs
+++ b/Emby.Naming/AudioBook/AudioBookFilePathParser.cs
@@ -52,8 +52,6 @@ namespace Emby.Naming.AudioBook
}
}
- result.Success = result.ChapterNumber.HasValue || result.PartNumber.HasValue;
-
return result;
}
}