aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library/LibraryManager.cs
AgeCommit message (Collapse)Author
2023-03-01Allocate less ListsBond_009
2022-12-19Use Order() introduced in .NET 7 (#8923)Bond-009
2022-12-08Allow video extras to use owner library optionsJoe Rogers
2022-12-07Remove dependency on OptimizedPriorityQueueBond_009
2022-12-07Use ArgumentException.ThrowIfNullOrEmptyBond_009
2022-12-05Replace != null with is not nullBond_009
2022-12-05Replace == null with is nullBond_009
2022-11-17Add xmldocs for TMDb provider, correct provider spellingShadowghost
2022-10-09Skip missing symlink instead of breaking out of directory scanJoe Rogers
2022-10-06Use ArgumentNullException.ThrowIfNull helper methodBond_009
Did a simple search/replace on the whole repo (except the RSSDP project) This reduces LOC and should improve performance (methods containing a throw statement don't get inlined) ``` if \((\w+) == null\) \s+\{ \s+throw new ArgumentNullException\((.*)\); \s+\} ``` ``` ArgumentNullException.ThrowIfNull($1); ```
2022-09-28Remove redundant using directivesHannes Braun
2022-09-23Backport pull request #8399 from jellyfin/release-10.8.zLogicalPhallacy
Respect visibility for people items (rebased) Original-merge: e6124bc154c9f95fdd491f309623def6b3df0171 Merged-by: Bond-009 <bond.009@outlook.com> Backported-by: Joshua M. Boniface <joshua@boniface.me>
2022-08-15Fix various typos luz paz
Found via `codespell -q 3 -S ./Emby.Server.Implementations/Localization -L allready,doesnt,inh,receivedfrom,whoknows`
2022-08-01Backport pull request #8167 from jellyfin/release-10.8.zJoshua Boniface
Add back library scan from library manager Authored-by: Cody Robibero <cody@robibe.ro> Merged-by: Bond-009 <bond.009@outlook.com> Original-merge: f9dffa767f71f287e384282679a9af5e20bc370e
2022-06-29Merge pull request #7946 from cvium/svgCody Robibero
(cherry picked from commit 4ebe70cf6a12be4f4eae0b815a269a483ee238bb) Signed-off-by: Joshua Boniface <joshua@boniface.me>
2022-04-07Merge pull request #7525 from 1337joe/fix-duplicate-library-media-pathsCody Robibero
(cherry picked from commit bebe1808ce529cff867b5b0c207542aadc9aedff) Signed-off-by: crobibero <cody@robibe.ro>
2022-03-11Merge pull request #7346 from Bond-009/guidClaus Vium
Optimize Guid comparisons
2022-02-21Optimize Guid comparisonsBond_009
* Use Guid.Equals(Guid) instead of the == override * Ban the usage of Guid.Equals(Object) to prevent accidental boxing * Compare to default(Guid) instead of Guid.Empty
2022-02-20Fix #7100 by catching the exception on opening invalid UDF imagesStanislav Ionascu
When an invalid UDF image is opened by the UdfReader, it may throw and exception. This change is to catch and log the exception.
2022-02-17Remove some dead codeBond_009
2022-02-15Fix some warningsBond_009
2022-02-06Merge pull request #7241 from Bond-009/async5Cody Robibero
2022-01-28Remove some allocations (#7246)Claus Vium
2022-01-22Flush to disk async where possibleBond_009
2022-01-20Properly populate QueryResultCody Robibero
2022-01-07Keep from serializing trailers into databaseJoe Rogers
2022-01-05Error on SA1316Bond_009
2022-01-02Merge pull request #7058 from cvium/the_most_important_featureBond-009
2022-01-01Remove file extension filter and fix buildcvium
2021-12-28Use dedicated resolvers for extrascvium
2021-12-27Remove more warningsCody Robibero
2021-12-27More cleanupBond_009
2021-12-22Merge pull request #7028 from cvium/everything_went_wrongCody Robibero
2021-12-20Fix extras folderscvium
2021-12-18Increment library number instead of appendingJoe Rogers
2021-12-15Merge branch 'master' into what_could_go_wrongClaus Vium
2021-12-12Use BaseItemKind where possibleCody Robibero
2021-12-07Refactor extras parsingcvium
2021-11-15Remove ILibraryManager as a dependency in resolvers etc.cvium
2021-11-09Fix some warningsBond_009
down to 580
2021-11-09Fix some warningsBond_009
609 left
2021-10-03Fix warnings in LibraryPatrick Barron
2021-09-24Use new Enum.TryParse(ReadOnlySpan<char>) overloadBond_009
2021-09-19Fix extra folder type resolving.Dixin
2021-09-03Fix some warningsBond_009
2021-09-03Merge remote-tracking branch 'upstream/master' into warn-259810Cody Robibero
2021-08-28Remove more and more warningsCody Robibero
2021-08-28Enable nullable for more filesBond_009
2021-07-11Fix some warningsBond_009
2021-06-19Move non-jellyfin extensions to separate projectBond_009