aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Program.cs
AgeCommit message (Collapse)Author
2022-02-14Fix option to disable server discoveryBond_009
2022-02-10Add option to change unix socket permissionsknackebrot
There is probably no way to do it when creating the socket
2022-02-06Merge pull request #7241 from Bond-009/async5Cody Robibero
2022-02-04Prevent additional errors on startup/shutdown (#6788)Cody Robibero
2022-01-22Flush to disk async where possibleBond_009
2021-11-24Migrate network configuration safelycvium
2021-11-20Remove ClientLog endpointsCody Robibero
2021-11-09Fix some warningsBond_009
609 left
2021-11-03Merge branch 'master' into client-loggerCody Robibero
2021-11-02Streamline startup codeBond_009
2021-10-26Add ability to upload entire fileCody Robibero
2021-10-26Merge remote-tracking branch 'upstream/master' into client-loggerCody Robibero
2021-10-03Fix warning: Qualifier is redundant (#2149)KonH
2021-09-25Remove sync FileStream hackBond_009
2021-09-20Allow shutdown while starting WebHostBond_009
2021-09-06Use appHost.Resolve for accessing the context in Program.csFernando Fernández
2021-09-02Use async FileStreams where it makes senseBond_009
2021-08-04Minor improvementsBond_009
2021-07-12Improve platform checksBond_009
2021-05-24Address review commentsFernando Fernández
2021-05-24Run SQLite query planner optimization at shutdown/restartFernando Fernández
2021-04-26Clean client filename generationcrobibero
2021-04-26Add endpoint to log client eventscrobibero
2021-04-17Remove unused using directivesBaronGreenback
2021-04-12Fix random failing of testsBond_009
Fully initialize the configuration manager at the init stage ``` Failed Jellyfin.Server.Integration.Tests.Controllers.ActivityLogControllerTests.ActivityLog_GetEntries_Ok [2 s] Error Message: MediaBrowser.Common.Extensions.ResourceNotFoundException : Configuration with key metadata not found. Stack Trace: at Emby.Server.Implementations.AppBase.BaseConfigurationManager.<>c__DisplayClass43_0.<GetConfiguration>b__0(String k) in D:\a\1\s\Emby.Server.Implementations\AppBase\BaseConfigurationManager.cs:line 309 at System.Collections.Concurrent.ConcurrentDictionary`2.GetOrAdd(TKey key, Func`2 valueFactory) at Emby.Server.Implementations.AppBase.BaseConfigurationManager.GetConfiguration(String key) in D:\a\1\s\Emby.Server.Implementations\AppBase\BaseConfigurationManager.cs:line 300 at MediaBrowser.Common.Configuration.ConfigurationManagerExtensions.GetConfiguration[T](IConfigurationManager manager, String key) in D:\a\1\s\MediaBrowser.Common\Configuration\IConfigurationManager.cs:line 88 at MediaBrowser.Controller.Library.MetadataConfigurationExtensions.GetMetadataConfiguration(IConfigurationManager config) in D:\a\1\s\MediaBrowser.Controller\Library\MetadataConfigurationStore.cs:line 28 at Emby.Server.Implementations.Library.ResolverHelper.SetDateCreated(BaseItem item, IFileSystem fileSystem, FileSystemMetadata info) in D:\a\1\s\Emby.Server.Implementations\Library\ResolverHelper.cs:line 159 at Emby.Server.Implementations.Library.ResolverHelper.EnsureDates(IFileSystem fileSystem, BaseItem item, ItemResolveArgs args) in D:\a\1\s\Emby.Server.Implementations\Library\ResolverHelper.cs:line 153 at Emby.Server.Implementations.Library.ResolverHelper.SetInitialItemValues(BaseItem item, ItemResolveArgs args, IFileSystem fileSystem, ILibraryManager libraryManager) in D:\a\1\s\Emby.Server.Implementations\Library\ResolverHelper.cs:line 81 at Emby.Server.Implementations.Library.LibraryManager.ResolveItem(ItemResolveArgs args, IItemResolver[] resolvers) in D:\a\1\s\Emby.Server.Implementations\Library\LibraryManager.cs:line 480 at Emby.Server.Implementations.Library.LibraryManager.ResolvePath(FileSystemMetadata fileInfo, IDirectoryService directoryService, IItemResolver[] resolvers, Folder parent, String collectionType, LibraryOptions libraryOptions) in D:\a\1\s\Emby.Server.Implementations\Library\LibraryManager.cs:line 618 at Emby.Server.Implementations.Library.LibraryManager.ResolvePath(FileSystemMetadata fileInfo, Folder parent) in D:\a\1\s\Emby.Server.Implementations\Library\LibraryManager.cs:line 536 at Emby.Server.Implementations.Library.LibraryManager.CreateRootFolder() in D:\a\1\s\Emby.Server.Implementations\Library\LibraryManager.cs:line 732 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.Controllers.ActivityLogControllerTests.ActivityLog_GetEntries_Ok() in D:\a\1\s\tests\Jellyfin.Server.Integration.Tests\Controllers\ActivityLogControllerTests.cs:line 21 --- End of stack trace from previous location --- ```
2021-03-13FxCop -> Net Analyzers (part 2)Bond_009
2021-03-08Merge pull request #5315 from BaronGreenback/FixFor5280Part2Joshua M. Boniface
2021-03-04Merge pull request #5345 from BaronGreenback/IP6Fixdkanada
Dual IP4 / IP6 server fails on non-windows platforms
2021-03-02Update Jellyfin.Server/Program.csBaronGreenback
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2021-03-02Merge pull request #5342 from BaronGreenback/errorMessageCorrectionBond-009
Corrected logging message
2021-03-01Kestrel workaroundBaronGreenback
2021-03-01Changed messageBaronGreenback
2021-02-27fixBaronGreenback
2021-02-23Pls fix race conditionBond_009
2020-12-30Encoding fix for System Logs. (#4564)BaronGreenback
2020-11-24enable cl-va p010 interopNyanmisaka
2020-11-04removed github merge introduced spaces.Greenback
2020-11-04Merge branch 'master' into NetworkPR2BaronGreenback
2020-10-31Updated with new NetManagerGreenback
2020-10-31Http1AndHttp2 is the default, no need to explicitly enable itBond_009
2020-10-26Merge branch 'master' into NetworkPR2BaronGreenback
2020-10-06Fix IWebSocketListener service registrationcvium
2020-09-14Removing blank lines.Jim Cartlidge
2020-09-14Update based on PR1 changes.Jim Cartlidge
2020-09-12Large number of filesJim Cartlidge
2020-09-11Normalize application pathscvium
2020-09-03Merge remote-tracking branch 'upstream/master' into api-doc-base-urlcrobibero
2020-09-03Kill HttpListenerHostClaus Vium
2020-09-02Properly host static files and set base urlcrobibero
2020-08-16Allow plugins to register services.Patrick Barron