aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/AggregateFolder.cs
AgeCommit message (Collapse)Author
2025-01-25Merge pull request #12798 from JPVenson/feature/EFUserDataJoshua M. Boniface
Refactor library.db into jellyfin.db and EFCore
2024-12-12move to new System.Threading.Lock type for better performanceDaniyar Alpyspayev
2024-10-09WIP porting new Repository structureJPVenson
2024-05-05Validate Collection Folders on adding and removal (#11444)gnattu
2024-04-17chore: use proper way to override remove rootgnattu
This is an alternate approach which is more proper, but changes all parts that uses/overrides the original ValidateChildren method Signed-off-by: gnattu <gnattuoc@me.com>
2024-01-17Use helper function to compare guid (#10825)Cody Robibero
2023-03-06Inject IDirectoryService where needed instead of passing it through ↵Joe Rogers
ItemResolveArgs
2023-03-06Remove some BaseItem references to make ItemResolveArgs more usable for testing.Joe Rogers
2022-12-05Replace != null with is not nullBond_009
2022-12-05Replace == null with is nullBond_009
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-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
2021-07-26Update AggregateFolder.csRich Lander
2021-07-23Fix more warningsRich Lander
2021-07-23Update MediaBrowser.Controller/Entities/AggregateFolder.csRich Lander
Co-authored-by: Cody Robibero <cody@robibe.ro>
2021-07-23Update MediaBrowser.Controller/Entities/AggregateFolder.csRich Lander
Co-authored-by: Cody Robibero <cody@robibe.ro>
2021-07-23Fix partial set of MediaBrowser.Controller/Entities warningsRich Lander
2021-06-06Remove warninigs from MediaBrowser.Controller (Part 3) (#6078)Cody Robibero
Co-authored-by: Bond-009 <bond.009@outlook.com>
2021-05-13Reduce warnings in MediaBrowser.Controllercrobibero
2021-05-11Reduce warnings in MediaBrowser.Controller (#6006)Cody Robibero
Co-authored-by: Patrick Barron <18354464+barronpm@users.noreply.github.com>
2021-05-07Enable nullable reference types for MediaBrowser.ControllerBond_009
2021-04-22Reduce string allocations/fs lookups in resolve codeBond_009
2020-08-22Enable TreatWarningsAsErrors for MediaBrowser.Controller in ReleaseBond_009
2020-06-16Merge pull request #3343 from telans/comment-stopsBond-009
Add full stop at end of comments (SA1629)
2020-06-16fix SA1513/SA1516telans
2020-06-16Add full stop at end of comments (SA1629)telans
2019-10-29Fix more warningsBond_009
2019-10-15Fix Json serialization errorBond_009
2019-01-13ReSharper conform to 'var' settingsErwin de Haan
2019-01-13ReSharper Reformat: Properties to expression bodied form.Erwin de Haan
2019-01-13Find+Sed BOM removal *.cs: Jellyfin.Server-MediaBrowser.ControllerErwin de Haan
2019-01-13Visual Studio Reformat: MediaBrowser.ControllerErwin de Haan
2019-01-10Mayor code cleanupErwin de Haan
Add Argument*Exceptions now use proper nameof operators. Added exception messages to quite a few Argument*Exceptions. Fixed rethorwing to be proper syntax. Added a ton of null checkes. (This is only a start, there are about 500 places that need proper null handling) Added some TODOs to log certain exceptions. Fix sln again. Fixed all AssemblyInfo's and added proper copyright (where I could find them) We live in *current year*. Fixed the use of braces. Fixed a ton of properties, and made a fair amount of functions static that should be and can be static. Made more Methods that should be static static. You can now use static to find bad functions! Removed unused variable. And added one more proper XML comment.
2019-01-03Post GPL cleanupBond_009
2018-12-27Add GPL modulesAndrew Rabert
2018-09-12Update to 3.5.2 and .net core 2.1stefan
2017-09-18update owned itemsLuke Pulverenti
2017-08-24update active recordingsLuke Pulverenti
2017-08-20update m3u tunerLuke Pulverenti
2017-08-11reduce traffic from session playerLuke Pulverenti
2017-08-09consolidate emby.server.core into emby.server.implementationsLuke Pulverenti
2017-06-03update live tv startupLuke Pulverenti
2017-05-26update GetItems methodLuke Pulverenti
2017-03-293.2.9.1Luke Pulverenti
2016-10-25make controller project portableLuke Pulverenti
2016-10-11update display of active recordingsLuke Pulverenti
2016-10-09add playback of in-progress recordingsLuke Pulverenti
2016-08-15use shared headroomLuke Pulverenti
2016-08-15fix folder cachingLuke Pulverenti
2016-08-13improve boxset & playlist performanceLuke Pulverenti