<feed xmlns='http://www.w3.org/2005/Atom'>
<title>jellyfin/MediaBrowser.Controller/Providers/IProviderManager.cs, branch v10.8.0-alpha3</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<id>https://git.lodewillems.com/jellyfin/atom?h=v10.8.0-alpha3</id>
<link rel='self' href='https://git.lodewillems.com/jellyfin/atom?h=v10.8.0-alpha3'/>
<link rel='alternate' type='text/html' href='https://git.lodewillems.com/jellyfin/'/>
<updated>2021-07-23T16:16:48Z</updated>
<entry>
<title>Fix warnings for MediaBrowser.Controller/Providers directory</title>
<updated>2021-07-23T16:16:48Z</updated>
<author>
<name>Rich Lander</name>
<email>rlander@microsoft.com</email>
</author>
<published>2021-07-23T16:16:48Z</published>
<link rel='alternate' type='text/html' href='https://git.lodewillems.com/jellyfin/commit/?id=717ff4ec623245cf59344a5898c4c8943e2c2b39'/>
<id>urn:sha1:717ff4ec623245cf59344a5898c4c8943e2c2b39</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Reduce warnings in MediaBrowser.Controller (#6006)</title>
<updated>2021-05-11T11:55:46Z</updated>
<author>
<name>Cody Robibero</name>
<email>cody@robibe.ro</email>
</author>
<published>2021-05-11T11:55:46Z</published>
<link rel='alternate' type='text/html' href='https://git.lodewillems.com/jellyfin/commit/?id=e3f55a0c54a2517361c237543aba717fd2a16e69'/>
<id>urn:sha1:e3f55a0c54a2517361c237543aba717fd2a16e69</id>
<content type='text'>
Co-authored-by: Patrick Barron &lt;18354464+barronpm@users.noreply.github.com&gt;</content>
</entry>
<entry>
<title>Enable nullable reference types for MediaBrowser.Controller</title>
<updated>2021-05-06T22:39:20Z</updated>
<author>
<name>Bond_009</name>
<email>bond.009@outlook.com</email>
</author>
<published>2021-05-06T22:39:20Z</published>
<link rel='alternate' type='text/html' href='https://git.lodewillems.com/jellyfin/commit/?id=fb090df0b59b71d7f143d2181d46f18943bbc35e'/>
<id>urn:sha1:fb090df0b59b71d7f143d2181d46f18943bbc35e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix possible nullref</title>
<updated>2021-04-03T23:45:15Z</updated>
<author>
<name>Bond_009</name>
<email>bond.009@outlook.com</email>
</author>
<published>2021-04-03T23:45:15Z</published>
<link rel='alternate' type='text/html' href='https://git.lodewillems.com/jellyfin/commit/?id=2ed0801be25921335b6509b6ebf9af61ad458409'/>
<id>urn:sha1:2ed0801be25921335b6509b6ebf9af61ad458409</id>
<content type='text'>
when `ProviderManager.SaveMetadata` gets called before
`ProviderManager.AddParts`

```
Error Message:
   System.ArgumentNullException : Value cannot be null. (Parameter 'source')
  Stack Trace:
     at System.Linq.ThrowHelper.ThrowArgumentNullException(ExceptionArgument argument)
   at System.Linq.Enumerable.Where[TSource](IEnumerable`1 source, Func`2 predicate)
   at MediaBrowser.Providers.Manager.ProviderManager.SaveMetadata(BaseItem item, ItemUpdateType updateType, IEnumerable`1 savers) in D:\a\1\s\MediaBrowser.Providers\Manager\ProviderManager.cs:line 674
   at MediaBrowser.Providers.Manager.ProviderManager.SaveMetadata(BaseItem item, ItemUpdateType updateType) in D:\a\1\s\MediaBrowser.Providers\Manager\ProviderManager.cs:line 655
   at Emby.Server.Implementations.Library.LibraryManager.RunMetadataSavers(BaseItem item, ItemUpdateType updateReason) in D:\a\1\s\Emby.Server.Implementations\Library\LibraryManager.cs:line 2012
   at Emby.Server.Implementations.Library.LibraryManager.UpdateItemsAsync(IReadOnlyList`1 items, BaseItem parent, ItemUpdateType updateReason, CancellationToken cancellationToken) in D:\a\1\s\Emby.Server.Implementations\Library\LibraryManager.cs:line 1970
   at Emby.Server.Implementations.Library.LibraryManager.CreateRootFolder() in D:\a\1\s\Emby.Server.Implementations\Library\LibraryManager.cs:line 775
   at Emby.Server.Implementations.Library.LibraryManager.get_RootFolder() in D:\a\1\s\Emby.Server.Implementations\Library\LibraryManager.cs:line 180
   at Emby.Server.Implementations.IO.LibraryMonitor.Start() in D:\a\1\s\Emby.Server.Implementations\IO\LibraryMonitor.cs:line 135
   at Emby.Server.Implementations.IO.LibraryMonitorStartup.RunAsync() in D:\a\1\s\Emby.Server.Implementations\IO\LibraryMonitorStartup.cs:line 26
   at Emby.Server.Implementations.ApplicationHost.StartEntryPoints(IEnumerable`1 entryPoints, Boolean isBeforeStartup)+MoveNext() in D:\a\1\s\Emby.Server.Implementations\ApplicationHost.cs:line 541
   at System.Threading.Tasks.Task.WhenAll(IEnumerable`1 tasks)
   at Emby.Server.Implementations.ApplicationHost.RunStartupTasksAsync(CancellationToken cancellationToken) in D:\a\1\s\Emby.Server.Implementations\ApplicationHost.cs:line 525
   at Jellyfin.Server.Integration.Tests.JellyfinApplicationFactory.CreateServer(IWebHostBuilder builder) in D:\a\1\s\tests\Jellyfin.Server.Integration.Tests\JellyfinApplicationFactory.cs:line 101
   at Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory`1.EnsureServer()
   at Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory`1.CreateDefaultClient(DelegatingHandler[] handlers)
   at Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory`1.CreateDefaultClient(Uri baseAddress, DelegatingHandler[] handlers)
   at Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory`1.CreateClient(WebApplicationFactoryClientOptions options)
   at Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory`1.CreateClient()
   at Jellyfin.Server.Integration.Tests.OpenApiSpecTests.GetSpec_ReturnsCorrectResponse() in D:\a\1\s\tests\Jellyfin.Server.Integration.Tests\OpenApiSpecTests.cs:line 26
--- End of stack trace from previous location ---
```
</content>
</entry>
<entry>
<title>Fix release build ... again</title>
<updated>2021-01-09T14:14:26Z</updated>
<author>
<name>Bond_009</name>
<email>bond.009@outlook.com</email>
</author>
<published>2021-01-09T14:14:26Z</published>
<link rel='alternate' type='text/html' href='https://git.lodewillems.com/jellyfin/commit/?id=be511ca162648b722b2b4b2f543d947d63f2c57e'/>
<id>urn:sha1:be511ca162648b722b2b4b2f543d947d63f2c57e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add tests for NFO parsers</title>
<updated>2021-01-09T14:00:59Z</updated>
<author>
<name>Bond_009</name>
<email>bond.009@outlook.com</email>
</author>
<published>2021-01-09T14:00:59Z</published>
<link rel='alternate' type='text/html' href='https://git.lodewillems.com/jellyfin/commit/?id=d07eef4f2560b5070b211f59cb381d205df1c9c3'/>
<id>urn:sha1:d07eef4f2560b5070b211f59cb381d205df1c9c3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Move MetadataRefreshThrottler to BaseItemManager</title>
<updated>2020-12-03T02:51:53Z</updated>
<author>
<name>Gary Wilber</name>
<email>Spacetech326@gmail.com</email>
</author>
<published>2020-12-03T02:51:53Z</published>
<link rel='alternate' type='text/html' href='https://git.lodewillems.com/jellyfin/commit/?id=f4edca7c2790207b5be9abb3b49029c9fbe04828'/>
<id>urn:sha1:f4edca7c2790207b5be9abb3b49029c9fbe04828</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'master' into event-rewrite-1</title>
<updated>2020-08-25T00:04:13Z</updated>
<author>
<name>Patrick Barron</name>
<email>barronpm@gmail.com</email>
</author>
<published>2020-08-25T00:04:13Z</published>
<link rel='alternate' type='text/html' href='https://git.lodewillems.com/jellyfin/commit/?id=9fa4fff15d27769d01d7badfca2b769f068beff6'/>
<id>urn:sha1:9fa4fff15d27769d01d7badfca2b769f068beff6</id>
<content type='text'>
# Conflicts:
#	Emby.Dlna/Emby.Dlna.csproj
#	Emby.Dlna/Eventing/DlnaEventManager.cs
#	Emby.Dlna/Service/BaseService.cs
#	Emby.Server.Implementations/ScheduledTasks/ScheduledTaskWorker.cs
#	MediaBrowser.Controller/Subtitles/SubtitleDownloadEventArgs.cs
</content>
</entry>
<entry>
<title>Enable TreatWarningsAsErrors for MediaBrowser.Controller in Release</title>
<updated>2020-08-22T19:56:24Z</updated>
<author>
<name>Bond_009</name>
<email>bond.009@outlook.com</email>
</author>
<published>2020-08-22T19:56:24Z</published>
<link rel='alternate' type='text/html' href='https://git.lodewillems.com/jellyfin/commit/?id=404bb4f83521760b3e9eeb748ab21d9056c4c023'/>
<id>urn:sha1:404bb4f83521760b3e9eeb748ab21d9056c4c023</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'master' into event-rewrite-1</title>
<updated>2020-08-19T22:11:17Z</updated>
<author>
<name>Patrick Barron</name>
<email>18354464+barronpm@users.noreply.github.com</email>
</author>
<published>2020-08-19T21:45:31Z</published>
<link rel='alternate' type='text/html' href='https://git.lodewillems.com/jellyfin/commit/?id=98ed90c4a2d94dc75c4c284d695e752ee3c882d5'/>
<id>urn:sha1:98ed90c4a2d94dc75c4c284d695e752ee3c882d5</id>
<content type='text'>
</content>
</entry>
</feed>
