Jump to content

Error App: Error in AniDB - Method 'BaseItem.get_People' not found.


KingJ

Recommended Posts

Hi there,

 

I've started trying to use Emby today, however i'm experiencing issues scraping metadata for Anime episodes.

 

I have installed the Anime plugin (version 1.0.5740.36986) and made sure that the metadata providers prioritise AniDB. However, whilst metadata for the overall series is correctly picked up, no metadata is present for the individual episodes. They are assigned Season and Episode numbers based off their resolution (e.g. Season 1920, Episode 1080) with no titles, descriptions etc. My media is organised in the following fashion;

Air\
    Air - 01 - Breeze [Doki][BluRay][1280x720][h264][77D45BED].mkv
    Air - 02 - Town [Doki][BluRay][1280x720][h264][FEECD6B6].mkv
Clannad\
    Clannad - 01 - On the Hillside Path Where the Cherry Blossoms Flutter [THORA][BluRay][1920x1080][h264][B219AF8B].mkv
    Clannad - 02 - The First Step [THORA][BluRay][1920x1080][h264][37EFCBA6].mkv

Turning on debug logs highlights a problem with the AniDB scraper;

2015-12-12 18:58:27.2078 Error App: Error in AniDB
        *** Error Report ***
        Version: 3.0.5781.5
        Command line: /usr/lib/emby-server/bin/MediaBrowser.Server.Mono.exe -programdata /var/lib/emby-server -restartpath /usr/lib/emby-server/restart.sh
        Operating system: Unix 3.13.0.71
        Processor count: 4
        64-Bit OS: True
        64-Bit Process: True
        Program data path: /var/lib/emby-server
        Mono: 4.2.1 (Stable 4.2.1.102/6dd2d0d Thu Nov 12 09:52:44 UTC 2015)
        Application Path: /usr/lib/emby-server/bin/MediaBrowser.Server.Mono.exe
        Method 'BaseItem.get_People' not found.
        System.MissingMethodException
          at System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start[TStateMachine] (System.Runtime.CompilerServices.TStateMachine& stateMachine) <0x417ec0f0 + 0x000d3> in <filename unknown>:0
          at System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[TResult].Start[TStateMachine] (System.Runtime.CompilerServices.TStateMachine& stateMachine) <0x417ec0c0 + 0x00019> in <filename unknown>:0
          at MediaBrowser.Plugins.Anime.Providers.AniDB.AniDbSeasonProvider.GetMetadata (MediaBrowser.Controller.Providers.SeasonInfo info, CancellationToken cancellationToken) <0x417ebd50 + 0x00273> in <filename unknown>:0
          at MediaBrowser.Providers.Manager.MetadataService`2+<ExecuteRemoteProviders>c__async6[TItemType,TIdType].MoveNext () <0x41685000 + 0x00490> in <filename unknown>:0

Any suggestions? I'd love to switch over to using Emby as my backend, it seems perfect other than this small issue!

 

Thanks in advance.

Edited by KingJ
Link to comment
Share on other sites

I've figured out that the episodes not getting metadata was a mistake on my part. In the file name examples above, the series number is implied rather than stated, and only the episode number is given. Thus, the scraper picked up on the resolution as the series and episode number, hence the Series 1920 Episode 1080 problems. Of course, this didn't match up with an actual series and episode number and hence the metadata couldn't be found! I had been using this format successfully with scudlee's AniDB plugin for Kodi, but Emby uses the more standardised SxxExx format. 

 

After a small tweak to scudlee's AniDB renaming script, I've renamed my files such that they're in SxxExx format. So for Clannad a new example is;

Clannad\
    Clannad - S01E01 - On a Slope with Falling Cherry Blossoms [THORA][BluRay][1920x1080][h264][B219AF8B].mkv
    Clannad - S01E02 - The First Step [THORA][BluRay][1920x1080][h264][37EFCBA6].mkv

With this new scheme, the metadata is correctly scraped - hurrah! Specials are assigned as S00 and are also correctly scraped.

 

However, a few files are still not being correctly scraped. These are different types of files, namely openings, endings and trailers. I've been taking a peek at the code, but I can't work out the expected file name format that Emby wants in order to query them. The metadata for the openings, endings and trailers is present in the cache, but since I can't work out the correct filename format Emby won't use it. After a quick search, I came across this post which seems to imply Emby may not be able to support this type of files, but would be interest if there's a definitive answer, or even a way to just keep them in the Specials category but pulling in the correct metadata (e.g. "Opening", "Ending", "Trailer 1" as the name as per the metadata).

 

Any suggestions?

 

Thanks.

 

Edit: The way scudlee's plugin and renaming system seems to handle this is to assign them episode numbers as follows;

 

  • Openings/Endings - 1xx
  • Trailers - 2xx
  • Parodies - 3xx
  • Other - 4xx

From looking over the code, it seems GetEpisodeXmlFile is the function that is called to retrieve the metadata XML file for a given episode, with arguments of the episode number and the type. This then generates a string such as episode-10.xml or episode-s01.xml which matches the metadata files in the cache. Presumably, Emby has a built in type for special which returns "s". This is a wild guess, but if the plugin implemented something similar to this would it solve the issue?

 

If an episode is a special and has an ID between 100 and 199, subtract 100 from the episode number look for an file matching the format "episode-c1.xml"

 

I know it's a bit of a workaround, but if Emby's type system can't natively support openings/endings etc, this is the only workaround that I can think of to still get metadata for these types of special episodes.

 

Just completely guessing here! For all I know this may be crazy and completely infeasible! ;)

Edited by KingJ
Link to comment
Share on other sites

  • 4 weeks later...
Aphid

I had released a major update for the anime plugin a month ago, but then found some changes to Emby a few hours before I released totally broke it again, and I had to pull the update back down. I had almost finished writing up a pull request addressing this, but have been sidelined with a few things for a few weeks...

 

The new version will handle the anidb-tvdb mapping much more robustly, but there will be some changes to the naming guidelines; it will assume you are using anidb listing if your episode files have absolute numbers (somewhat like you originally had your files), and assume tvdb listings if you have season numbers anywhere. There are some edge cases where this is a breaking change, so there is going to be a bit of emulation of the old behaviour which will be enabled by default for users updating from an old installation which I hope will ease issues here. I'll try by best to get it all fixed and released by the end of this week (but my pull request is going to involve some large changes which might take a while to get Lukes' approval).

 

As for OP/ED/etc, Emby does not have any native understanding of them. Your suggested workaround might well be the best solution, as long as we assume that no series is going to have hundreds of specials. It would't take long to implement, but I'll take a look at it after I've gotten the next release out.

Link to comment
Share on other sites

I saw the changelog for the v2 update shortly after I made the original posts, it does seem like it'll be a big improvement so i'm glad to hear you're hoping to release soon! I'm happy to help out if you need any additional testing.

 

Although all of my files are now in the SxxExx format (but still in AniDB season folders, so there's nothing that has S02 for example), renaming back to the "Name epxx" format won't take long using the AniDB client. I had to explicitly set the season to S01 so that Emby didn't detect the resolution in the filename as the season and episode numbers.

 

I'm not aware of any shows that have more than 100 specials, so numbering OPs/EDs in the hundreds etc should work. As this is the way Scudlee's script renames them i'd assume that if there had been an issue with that numbering it would have been found by now. It still feels a bit hacky but until Emby can support episode types other than main and special, it looks to be the only way to get metadata for them rather than having them appear in the library with their filename.

 

Thanks for all of your existing work on the plugin!

Link to comment
Share on other sites

  • 2 weeks later...
  • 2 weeks later...

I'd be keen to hear if there's any news on v2 too, i've been running into a few other minor issues but wanted to hold off reporting them until v2 is released as they may be fixed there.

Link to comment
Share on other sites

  • 1 month later...
ctrlaltdefeat

Last update was at the beginning of January being that the dev wouldnt have time for a few weeks or something along those lines

Link to comment
Share on other sites

  • 2 months later...
Casgar

Any news regarding this plugin?

 

If not, then what is the last Emby-server version that has full support?

Link to comment
Share on other sites

Casgar

Did you try the latest version of the plugin before asking that?

 

Well, at the time speaking, no. But I have now with server version 3.0.5972.0 and app version 1.1.5978.28844 on Ubuntu 14.04. I also tried with an older version of the server from ~2 months ago (can't remember which one) with the same results.

 

After clicking on "Install" for the plugin it says that the plugin has been successfully installed and asks me to restart the server, which I of course do. But when I hit the "Restart" button the screen fades to the black/grey background colour of the home-screen. The loading circle appears for a short while and then it dissaprears and nothing else happens, at all. If I try to reconnect to the server I just get "Connection failed". Waited since yesterday to see if it was just slow, but no success. If I restart the server manually through the terminal I can once again connect to it, but it doesn't show the plugin in the plugin menu.

 

I can post logs tomorrow, since it would help i guess? Too tired at the moment.

Link to comment
Share on other sites

Casgar

...

 

Here's the log after I have installed the plugin and restarted the server through the terminal, since the server freezes when I try from the interface.

 

 

2016-05-28 15:38:58.0049 Info Main: Emby
	Command line: /usr/lib/emby-server/bin/MediaBrowser.Server.Mono.exe -programdata /var/lib/emby-server -restartpath /usr/lib/emby-server/restart.sh
	Operating system: Unix 4.2.0.35
	Processor count: 4
	64-Bit OS: True
	64-Bit Process: True
	Program data path: /var/lib/emby-server
	Mono: 4.2.1 (Stable 4.2.1.102/6dd2d0d Thu Dec  3 04:04:55 UTC 2015)
	Application Path: /usr/lib/emby-server/bin/MediaBrowser.Server.Mono.exe
2016-05-28 15:38:58.2246 Info App: Application version: 3.0.5972.0
2016-05-28 15:38:58.2790 Info App: Application configuration:
	{"EnableUPnP":true,"PublicPort":8096,"PublicHttpsPort":8920,"HttpServerPortNumber":8096,"HttpsPortNumber":8920,"EnableHttps":false,"EnableInternetProviders":true,"IsPortAuthorized":true,"EnableCaseSensitiveItemIds":true,"SeasonZeroDisplayName":"Specials","SaveLocalMeta":true,"EnableLocalizedGuids":true,"PreferredMetadataLanguage":"sv","MetadataCountryCode":"SE","SortReplaceCharacters":[".","+","%"],"SortRemoveCharacters":[",","&","-","{","}","'"],"SortRemoveWords":["the","a","an"],"MinResumePct":5,"MaxResumePct":90,"MinResumeDurationSeconds":300,"LibraryMonitorDelay":60,"EnableDashboardResponseCaching":true,"EnableDashboardResourceMinification":true,"DashboardSourcePath":"","ImageSavingConvention":"Compatible","MetadataOptions":[{"ItemType":"Book","ImageOptions":[{"Type":"Backdrop","Limit":1,"MinWidth":1280}],"DisabledMetadataSavers":[],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":[],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]},{"ItemType":"Movie","ImageOptions":[{"Type":"Backdrop","Limit":1,"MinWidth":1280},{"Type":"Art","Limit":0,"MinWidth":0},{"Type":"Disc","Limit":0,"MinWidth":0},{"Type":"Primary","Limit":1,"MinWidth":0},{"Type":"Banner","Limit":0,"MinWidth":0},{"Type":"Thumb","Limit":1,"MinWidth":0},{"Type":"Logo","Limit":1,"MinWidth":0}],"DisabledMetadataSavers":["Emby Xml"],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":[],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]},{"ItemType":"MusicVideo","ImageOptions":[{"Type":"Backdrop","Limit":1,"MinWidth":1280},{"Type":"Art","Limit":0,"MinWidth":0},{"Type":"Disc","Limit":0,"MinWidth":0},{"Type":"Primary","Limit":1,"MinWidth":0},{"Type":"Banner","Limit":0,"MinWidth":0},{"Type":"Thumb","Limit":1,"MinWidth":0},{"Type":"Logo","Limit":1,"MinWidth":0}],"DisabledMetadataSavers":["Emby Xml"],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":[],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]},{"ItemType":"Series","ImageOptions":[{"Type":"Backdrop","Limit":1,"MinWidth":1280},{"Type":"Art","Limit":0,"MinWidth":0},{"Type":"Primary","Limit":1,"MinWidth":0},{"Type":"Banner","Limit":1,"MinWidth":0},{"Type":"Thumb","Limit":1,"MinWidth":0},{"Type":"Logo","Limit":1,"MinWidth":0}],"DisabledMetadataSavers":["Emby Xml"],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":[],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]},{"ItemType":"MusicAlbum","ImageOptions":[{"Type":"Backdrop","Limit":0,"MinWidth":1280},{"Type":"Disc","Limit":0,"MinWidth":0}],"DisabledMetadataSavers":["Emby Xml"],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":[],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]},{"ItemType":"MusicArtist","ImageOptions":[{"Type":"Backdrop","Limit":1,"MinWidth":1280},{"Type":"Banner","Limit":0,"MinWidth":0},{"Type":"Art","Limit":0,"MinWidth":0},{"Type":"Logo","Limit":0,"MinWidth":0}],"DisabledMetadataSavers":["Emby Xml"],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":[],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]},{"ItemType":"BoxSet","ImageOptions":[{"Type":"Backdrop","Limit":1,"MinWidth":1280},{"Type":"Primary","Limit":1,"MinWidth":0},{"Type":"Thumb","Limit":1,"MinWidth":0},{"Type":"Logo","Limit":1,"MinWidth":0},{"Type":"Art","Limit":0,"MinWidth":0},{"Type":"Disc","Limit":0,"MinWidth":0},{"Type":"Banner","Limit":0,"MinWidth":0}],"DisabledMetadataSavers":[],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":[],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]},{"ItemType":"Season","ImageOptions":[{"Type":"Backdrop","Limit":0,"MinWidth":1280},{"Type":"Primary","Limit":1,"MinWidth":0},{"Type":"Banner","Limit":0,"MinWidth":0},{"Type":"Thumb","Limit":0,"MinWidth":0}],"DisabledMetadataSavers":["Emby Xml"],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":["The Open Movie Database","TheMovieDb"],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]},{"ItemType":"Episode","ImageOptions":[{"Type":"Backdrop","Limit":0,"MinWidth":1280},{"Type":"Primary","Limit":1,"MinWidth":0}],"DisabledMetadataSavers":["Emby Xml"],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":["The Open Movie Database","TheMovieDb"],"MetadataFetcherOrder":[],"DisabledImageFetchers":["TheMovieDb"],"ImageFetcherOrder":[]},{"ItemType":"Video","ImageOptions":[{"Type":"Backdrop","Limit":3,"MinWidth":1280}],"DisabledMetadataSavers":["Emby Xml"],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":[],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]}],"EnableAutomaticRestart":true,"PathSubstitutions":[],"ServerName":"","UICulture":"sv","PeopleMetadataOptions":{"DownloadActorMetadata":true,"DownloadDirectorMetadata":true,"DownloadProducerMetadata":false,"DownloadWriterMetadata":false,"DownloadComposerMetadata":false,"DownloadOtherPeopleMetadata":false,"DownloadGuestStarMetadata":false},"FindInternetTrailers":true,"SaveMetadataHidden":false,"ContentTypes":[],"EnableAudioArchiveFiles":false,"EnableVideoArchiveFiles":false,"RemoteClientBitrateLimit":0,"DenyIFrameEmbedding":true,"EnableLibraryMonitor":"Auto","SharingExpirationDays":30,"EnableDateLastRefresh":true,"Migrations":["MediaBrowser.Server.Startup.Common.Migrations.OmdbEpisodeProviderMigration","MediaBrowser.Server.Startup.Common.Migrations.MovieDbEpisodeProviderMigration"],"MigrationVersion":23,"SchemaVersion":79,"DownloadImagesInAdvance":false,"EnableAnonymousUsageReporting":false,"EnableStandaloneMusicKeys":true,"EnableDebugLevelLogging":true,"EnableAutoUpdate":true,"SystemUpdateLevel":"Release","LogFileRetentionDays":3,"RunAtStartup":false,"IsStartupWizardCompleted":true,"CachePath":"","EnableCustomPathSubFolders":true}
2016-05-28 15:38:58.2861 Info App: Loading MediaBrowser.Plugins.Anime, Version=1.1.5978.28844, Culture=neutral, PublicKeyToken=null
2016-05-28 15:38:58.2861 Info App: Loading MediaBrowser.Api, Version=3.0.5972.0, Culture=neutral, PublicKeyToken=null
2016-05-28 15:38:58.2861 Info App: Loading MediaBrowser.WebDashboard, Version=3.0.5972.0, Culture=neutral, PublicKeyToken=null
2016-05-28 15:38:58.2861 Info App: Loading MediaBrowser.Model, Version=3.0.5972.0, Culture=neutral, PublicKeyToken=null
2016-05-28 15:38:58.2861 Info App: Loading MediaBrowser.Common, Version=3.0.5972.0, Culture=neutral, PublicKeyToken=null
2016-05-28 15:38:58.2861 Info App: Loading MediaBrowser.Controller, Version=3.0.5972.0, Culture=neutral, PublicKeyToken=null
2016-05-28 15:38:58.2861 Info App: Loading MediaBrowser.Providers, Version=3.0.5972.0, Culture=neutral, PublicKeyToken=null
2016-05-28 15:38:58.2861 Info App: Loading MediaBrowser.Common.Implementations, Version=3.0.5972.0, Culture=neutral, PublicKeyToken=null
2016-05-28 15:38:58.2861 Info App: Loading MediaBrowser.Server.Implementations, Version=3.0.5972.0, Culture=neutral, PublicKeyToken=null
2016-05-28 15:38:58.2861 Info App: Loading MediaBrowser.MediaEncoding, Version=3.0.5972.0, Culture=neutral, PublicKeyToken=null
2016-05-28 15:38:58.2861 Info App: Loading MediaBrowser.Dlna, Version=3.0.5972.0, Culture=neutral, PublicKeyToken=null
2016-05-28 15:38:58.2861 Info App: Loading MediaBrowser.LocalMetadata, Version=3.0.5972.0, Culture=neutral, PublicKeyToken=null
2016-05-28 15:38:58.2861 Info App: Loading MediaBrowser.XbmcMetadata, Version=3.0.5972.0, Culture=neutral, PublicKeyToken=null
2016-05-28 15:38:58.2861 Info App: Loading MediaBrowser.IsoMounting.Linux, Version=1.0.5131.24779, Culture=neutral, PublicKeyToken=null
2016-05-28 15:38:58.2861 Info App: Loading MediaBrowser.Server.Mono, Version=3.0.5972.0, Culture=neutral, PublicKeyToken=null
2016-05-28 15:38:58.2861 Info App: Loading MediaBrowser.Server.Startup.Common, Version=3.0.5972.0, Culture=neutral, PublicKeyToken=null
2016-05-28 15:38:58.3476 Info App: Sqlite 3.8.2 opening /var/lib/emby-server/data/users.db
2016-05-28 15:38:58.3955 Info App: Sqlite 3.8.2 opening /var/lib/emby-server/data/fileorganization.db
2016-05-28 15:38:58.3994 Info App: Sqlite 3.8.2 opening /var/lib/emby-server/data/authentication.db
2016-05-28 15:38:58.4069 Info App: Sqlite 3.8.2 opening /var/lib/emby-server/data/sync14.db
2016-05-28 15:38:58.4355 Info ImageMagick: ImageMagick version: ImageMagick 6.9.2-8 Q8 x86_64 2015-12-21 http://www.imagemagick.org
2016-05-28 15:38:58.4529 Info ImageProcessor: ImageProcessor started with 4 max concurrent image processes
2016-05-28 15:38:58.4712 Info App: FFMpeg: /var/lib/emby-server/ffmpeg/20160215/ffmpeg
2016-05-28 15:38:58.4712 Info App: FFProbe: /var/lib/emby-server/ffmpeg/20160215/ffprobe
2016-05-28 15:38:58.4712 Info App: Sqlite 3.8.2 opening /var/lib/emby-server/data/shares.db
2016-05-28 15:38:58.4799 Info App: Sqlite 3.8.2 opening /var/lib/emby-server/data/activitylog.db
2016-05-28 15:38:58.4834 Info App: Sqlite 3.8.2 opening /var/lib/emby-server/data/displaypreferences.db
2016-05-28 15:38:58.4862 Info App: Sqlite 3.8.2 opening /var/lib/emby-server/data/userdata_v2.db
2016-05-28 15:38:58.4929 Info App: Sqlite 3.8.2 opening /var/lib/emby-server/data/library.db
2016-05-28 15:38:58.5055 Info App: Sqlite 3.8.2 opening /var/lib/emby-server/data/refreshinfo.db
2016-05-28 15:38:58.5088 Info App: Sqlite 3.8.2 opening /var/lib/emby-server/data/notifications.db
2016-05-28 15:38:58.6535 Error App: Error creating SimpleInjector.ActivationException: No registration for type Plugin could be found and an implicit registration could not be made. One or more errors occurred. ---> System.AggregateException: One or more errors occurred. ---> System.InvalidOperationException: There is an error in XML document (3716, 69). ---> System.OverflowException: Value was either too large or too small for a signed byte.
  at System.SByte.Parse (System.String s, NumberStyles style, System.Globalization.NumberFormatInfo info) <0x7f38b187fe70 + 0x000fe> in <filename unknown>:0 
  at System.SByte.Parse (System.String s, NumberStyles style, IFormatProvider provider) <0x7f38b187fe30 + 0x00034> in <filename unknown>:0 
  at System.Xml.XmlConvert.ToSByte (System.String s) <0x40baef60 + 0x0002d> in <filename unknown>:0 
  at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderAnimelist.Read2_AnimelistMapping (Boolean isNullable, Boolean checkType) <0x40bae790 + 0x003f7> in <filename unknown>:0 
  at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderAnimelist.Read7_AnimelistAnime (Boolean isNullable, Boolean checkType) <0x40bac070 + 0x00af3> in <filename unknown>:0 
  at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderAnimelist.Read8_Animelist (Boolean isNullable, Boolean checkType) <0x40baba40 + 0x003bb> in <filename unknown>:0 
  at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderAnimelist.Read9_animelist () <0x40bab850 + 0x0009b> in <filename unknown>:0 
  at (wrapper managed-to-native) System.Reflection.MonoMethod:InternalInvoke (System.Reflection.MonoMethod,object,object[],System.Exception&)
  at System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) <0x7f38b19fb780 + 0x000a1> in <filename unknown>:0 
  --- End of inner exception stack trace ---
  at System.Xml.Serialization.XmlSerializer.Deserialize (System.Xml.XmlReader xmlReader, System.String encodingStyle, XmlDeserializationEvents events) <0x40a7e6e0 + 0x0082f> in <filename unknown>:0 
  at System.Xml.Serialization.XmlSerializer.Deserialize (System.Xml.XmlReader xmlReader, System.String encodingStyle) <0x40a7e650 + 0x0007f> in <filename unknown>:0 
  at System.Xml.Serialization.XmlSerializer.Deserialize (System.IO.Stream stream) <0x40baa600 + 0x0008b> in <filename unknown>:0 
  at AnimeLists.Downloader+<Download>d__3.MoveNext () <0x40ba4390 + 0x00667> in <filename unknown>:0 
  --- End of inner exception stack trace ---
  at System.Threading.Tasks.Task.ThrowIfExceptional (Boolean includeTaskCanceledExceptions) <0x7f38b18ed920 + 0x00037> in <filename unknown>:0 
  at System.Threading.Tasks.Task`1[TResult].GetResultCore (Boolean waitCompletionNotification) <0x7f38b18dc950 + 0x00066> in <filename unknown>:0 
  at System.Threading.Tasks.Task`1[TResult].get_Result () <0x7f38b18dc8f0 + 0x00024> in <filename unknown>:0 
  at MediaBrowser.Plugins.Anime.Providers.AniDB.Converter.AnidbConverter..ctor (IApplicationPaths paths) <0x40ba3790 + 0x000be> in <filename unknown>:0 
  at MediaBrowser.Plugins.Anime.Plugin..ctor (IApplicationPaths applicationPaths, IXmlSerializer xmlSerializer, ILogger logger) <0x40ba2aa0 + 0x000bb> in <filename unknown>:0 
  at DynamicInstanceProducer18.GetInstance (System.Object[] constants) <0x40ba27e0 + 0x001ef> in <filename unknown>:0 
  at SimpleInjector.Internals.CompilationHelpers+ConstantsClosure`1[TResult].GetInstance () <0x40b9d330 + 0x00021> in <filename unknown>:0 
  at SimpleInjector.InstanceProducer.BuildAndReplaceInstanceCreatorAndCreateFirstInstance () <0x40b86700 + 0x0005b> in <filename unknown>:0 
  at SimpleInjector.InstanceProducer.GetInstance () <0x40b85b80 + 0x00039> in <filename unknown>:0 
---> (Inner Exception #0) System.InvalidOperationException: There is an error in XML document (3716, 69). ---> System.OverflowException: Value was either too large or too small for a signed byte.
  at System.SByte.Parse (System.String s, NumberStyles style, System.Globalization.NumberFormatInfo info) <0x7f38b187fe70 + 0x000fe> in <filename unknown>:0 
  at System.SByte.Parse (System.String s, NumberStyles style, IFormatProvider provider) <0x7f38b187fe30 + 0x00034> in <filename unknown>:0 
  at System.Xml.XmlConvert.ToSByte (System.String s) <0x40baef60 + 0x0002d> in <filename unknown>:0 
  at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderAnimelist.Read2_AnimelistMapping (Boolean isNullable, Boolean checkType) <0x40bae790 + 0x003f7> in <filename unknown>:0 
  at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderAnimelist.Read7_AnimelistAnime (Boolean isNullable, Boolean checkType) <0x40bac070 + 0x00af3> in <filename unknown>:0 
  at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderAnimelist.Read8_Animelist (Boolean isNullable, Boolean checkType) <0x40baba40 + 0x003bb> in <filename unknown>:0 
  at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderAnimelist.Read9_animelist () <0x40bab850 + 0x0009b> in <filename unknown>:0 
  at (wrapper managed-to-native) System.Reflection.MonoMethod:InternalInvoke (System.Reflection.MonoMethod,object,object[],System.Exception&)
  at System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) <0x7f38b19fb780 + 0x000a1> in <filename unknown>:0 
  --- End of inner exception stack trace ---
  at System.Xml.Serialization.XmlSerializer.Deserialize (System.Xml.XmlReader xmlReader, System.String encodingStyle, XmlDeserializationEvents events) <0x40a7e6e0 + 0x0082f> in <filename unknown>:0 
  at System.Xml.Serialization.XmlSerializer.Deserialize (System.Xml.XmlReader xmlReader, System.String encodingStyle) <0x40a7e650 + 0x0007f> in <filename unknown>:0 
  at System.Xml.Serialization.XmlSerializer.Deserialize (System.IO.Stream stream) <0x40baa600 + 0x0008b> in <filename unknown>:0 
  at AnimeLists.Downloader+<Download>d__3.MoveNext () <0x40ba4390 + 0x00667> in <filename unknown>:0 <---

  --- End of inner exception stack trace ---
  at SimpleInjector.InstanceProducer.GetInstance () <0x40b85b80 + 0x001a7> in <filename unknown>:0 
  at SimpleInjector.Container.GetInstanceFromProducer (SimpleInjector.InstanceProducer instanceProducer, System.Type serviceType) <0x40b85b30 + 0x00037> in <filename unknown>:0 
  at SimpleInjector.Container.GetInstanceForRootType (System.Type serviceType) <0x40b84680 + 0x0005f> in <filename unknown>:0 
  at SimpleInjector.Container.GetInstance (System.Type serviceType) <0x40b84220 + 0x00057> in <filename unknown>:0 
  at MediaBrowser.Common.Implementations.BaseApplicationHost`1[TApplicationPathsType].CreateInstanceSafe (System.Type type) <0x40b840f0 + 0x0003b> in <filename unknown>:0 
2016-05-28 15:38:58.7292 Info HttpServer: Calling ServiceStack AppHost.Init
2016-05-28 15:39:00.5475 Info ServiceStackHost: Initializing Application took 2131.286ms
2016-05-28 15:39:00.5591 Info ServerManager: Loading Http Server
2016-05-28 15:39:00.5615 Info HttpServer: attempting to load pfx: /var/lib/emby-server/ssl/cert_9c31b7884ea5475c8687970fc5996297.pfx
2016-05-28 15:39:00.5807 Info HttpServer: Adding HttpListener prefix http://+:8096/
2016-05-28 15:39:00.5811 Info HttpServer: Adding HttpListener prefix https://+:8920/
2016-05-28 15:39:00.7142 Error App: Error creating SimpleInjector.ActivationException: No registration for type AnidbTvdbEpisodeConverter could be found and an implicit registration could not be made. Object reference not set to an instance of an object ---> System.NullReferenceException: Object reference not set to an instance of an object
  at MediaBrowser.Plugins.Anime.Providers.AniDB.Converter.AnidbTvdbEpisodeConverter..ctor () <0x40c9aad0 + 0x00016> in <filename unknown>:0 
  at DynamicInstanceProducer214.GetInstance () <0x40c9aa90 + 0x00027> in <filename unknown>:0 
  at SimpleInjector.InstanceProducer.BuildAndReplaceInstanceCreatorAndCreateFirstInstance () <0x40b86700 + 0x0005b> in <filename unknown>:0 
  at SimpleInjector.InstanceProducer.GetInstance () <0x40b85b80 + 0x00039> in <filename unknown>:0 
  --- End of inner exception stack trace ---
  at SimpleInjector.InstanceProducer.GetInstance () <0x40b85b80 + 0x001a7> in <filename unknown>:0 
  at SimpleInjector.Container.GetInstanceFromProducer (SimpleInjector.InstanceProducer instanceProducer, System.Type serviceType) <0x40b85b30 + 0x00037> in <filename unknown>:0 
  at SimpleInjector.Container.GetInstanceForRootType (System.Type serviceType) <0x40b84680 + 0x0005f> in <filename unknown>:0 
  at SimpleInjector.Container.GetInstance (System.Type serviceType) <0x40b84220 + 0x00057> in <filename unknown>:0 
  at MediaBrowser.Common.Implementations.BaseApplicationHost`1[TApplicationPathsType].CreateInstanceSafe (System.Type type) <0x40b840f0 + 0x0003b> in <filename unknown>:0 
2016-05-28 15:39:00.7153 Error App: Error creating SimpleInjector.ActivationException: No registration for type AnidbTvdbSeasonConverter could be found and an implicit registration could not be made. Object reference not set to an instance of an object ---> System.NullReferenceException: Object reference not set to an instance of an object
  at MediaBrowser.Plugins.Anime.Providers.AniDB.Converter.AnidbTvdbSeasonConverter..ctor () <0x40c9adc0 + 0x00016> in <filename unknown>:0 
  at DynamicInstanceProducer215.GetInstance () <0x40c9ad80 + 0x00027> in <filename unknown>:0 
  at SimpleInjector.InstanceProducer.BuildAndReplaceInstanceCreatorAndCreateFirstInstance () <0x40b86700 + 0x0005b> in <filename unknown>:0 
  at SimpleInjector.InstanceProducer.GetInstance () <0x40b85b80 + 0x00039> in <filename unknown>:0 
  --- End of inner exception stack trace ---
  at SimpleInjector.InstanceProducer.GetInstance () <0x40b85b80 + 0x001a7> in <filename unknown>:0 
  at SimpleInjector.Container.GetInstanceFromProducer (SimpleInjector.InstanceProducer instanceProducer, System.Type serviceType) <0x40b85b30 + 0x00037> in <filename unknown>:0 
  at SimpleInjector.Container.GetInstanceForRootType (System.Type serviceType) <0x40b84680 + 0x0005f> in <filename unknown>:0 
  at SimpleInjector.Container.GetInstance (System.Type serviceType) <0x40b84220 + 0x00057> in <filename unknown>:0 
  at MediaBrowser.Common.Implementations.BaseApplicationHost`1[TApplicationPathsType].CreateInstanceSafe (System.Type type) <0x40b840f0 + 0x0003b> in <filename unknown>:0 
2016-05-28 15:39:00.8437 Info TaskManager: Daily trigger for Start new log file set to fire at 5/29/2016 12:00:00 AM, which is 500.9859387 minutes from now.
2016-05-28 15:39:00.8456 Info TaskManager: Daily trigger for Refresh people set to fire at 5/29/2016 2:00:00 AM, which is 620.98590675 minutes from now.
2016-05-28 15:39:00.8459 Info TaskManager: Daily trigger for Chapter image extraction set to fire at 5/29/2016 1:00:00 AM, which is 560.985900316667 minutes from now.
2016-05-28 15:39:00.8488 Info App: ServerId: ad34ad1a7aa74a1089cb183cb0d5fe75
2016-05-28 15:39:00.8488 Info App: Core startup complete
2016-05-28 15:39:00.8845 Debug PortMapper: Starting NAT discovery
2016-05-28 15:39:00.8866 Info App: Loading live tv data from /var/lib/emby-server/data/livetv/timers
2016-05-28 15:39:00.8901 Info SsdpHandler: MultiCast socket created
2016-05-28 15:39:00.8911 Debug SsdpHandler: Starting alive notifier
2016-05-28 15:39:00.8995 Debug NetworkManager: Querying interface: lo. Type: Loopback. Status: Unknown
2016-05-28 15:39:00.9005 Debug NetworkManager: Querying interface: p3p1. Type: Ethernet. Status: Down
2016-05-28 15:39:00.9009 Debug NetworkManager: Querying interface: em1. Type: Ethernet. Status: Up
2016-05-28 15:39:00.9009 Debug NetworkManager: Querying interface: wlan0. Type: Wireless80211. Status: Down
2016-05-28 15:39:00.9045 Info IDeviceDiscovery: Creating SSDP listener on 127.0.0.1
2016-05-28 15:39:00.9045 Info IDeviceDiscovery: Creating SSDP listener on 192.168.1.2
2016-05-28 15:39:00.9380 Debug PortMapper: NAT device found: 192.168.1.1
2016-05-28 15:39:00.9380 Debug PortMapper: Creating port map on port 8096
2016-05-28 15:39:01.0842 Debug SsdpHandler: Registered mount a88351a89d11084d89af5baef10ce1d7 at http://127.0.0.1:8096/dlna/a88351a89d11084d89af5baef10ce1d7/description.xml
2016-05-28 15:39:01.0842 Debug SsdpHandler: Registered mount b67df29b5c379445fde78c3774ab518d at http://192.168.1.2:8096/dlna/b67df29b5c379445fde78c3774ab518d/description.xml
2016-05-28 15:39:01.1035 Debug PortMapper: NAT device found: 192.168.1.2
2016-05-28 15:39:01.1035 Debug PortMapper: Creating port map on port 8096
2016-05-28 15:39:01.1199 Debug PortMapper: Creating port map on port 8920
2016-05-28 15:39:01.3838 Info HttpClient: HttpClientManager GET: http://emby.media/community/index.php?/blog/rss/1-media-browser-developers-blog
2016-05-28 15:39:01.4420 Debug PortMapper: Creating port map on port 8920
2016-05-28 15:39:01.5181 Info HttpClient: HttpClientManager POST: https://www.mb3admin.com/admin/service/registration/validate
2016-05-28 15:39:01.5573 Info HttpClient: HttpClientManager POST: https://connect.emby.media/service/Servers?id=50bac9b58ca38a7cb5183f88c0142ac7
2016-05-28 15:39:01.7464 Info HttpClient: HttpClientManager GET: https://connect.emby.media/service/ServerAuthorizations?serverId=50bac9b58ca38a7cb5183f88c0142ac7
2016-05-28 15:39:03.8509 Info TaskManager: StartupTrigger fired for task: Check for plugin updates
2016-05-28 15:39:03.8509 Info TaskManager: StartupTrigger fired for task: Check for application updates
2016-05-28 15:39:03.8541 Info TaskManager: Queueing task SystemUpdateTask
2016-05-28 15:39:03.8541 Info TaskManager: Queueing task PluginUpdateTask
2016-05-28 15:39:03.8620 Info TaskManager: Executing Check for application updates
2016-05-28 15:39:03.8892 Info TaskManager: Executing Check for plugin updates
2016-05-28 15:39:03.9286 Debug App: No application update available.
2016-05-28 15:39:03.9294 Info TaskManager: Check for application updates Completed after 0 minute(s) and 0 seconds
2016-05-28 15:39:03.9420 Info TaskManager: ExecuteQueuedTasks
2016-05-28 15:39:03.9675 Info HttpClient: HttpClientManager.GetTempFileResponse url: https://www.mb3admin.com/admin/service/MB3Packages.json
2016-05-28 15:39:03.9701 Info TaskManager: Check for plugin updates Completed after 0 minute(s) and 0 seconds
2016-05-28 15:39:03.9701 Info TaskManager: ExecuteQueuedTasks
2016-05-28 15:39:05.8846 Info HttpClient: HttpClientManager GET: http://bot.whatismyipaddress.com
2016-05-28 15:39:06.2529 Info HttpClient: HttpClientManager POST: https://connect.emby.media/service/Servers?id=50bac9b58ca38a7cb5183f88c0142ac7
2016-05-28 15:39:06.4367 Info HttpClient: HttpClientManager GET: https://connect.emby.media/service/ServerAuthorizations?serverId=50bac9b58ca38a7cb5183f88c0142ac7
2016-05-28 15:39:11.3659 Info HttpServer: HTTP GET http://fi:8096/web/strings/sv.json?v=1464442744762. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:11.3659 Info HttpServer: HTTP GET http://fi:8096/web/bower_components/emby-webcomponents/strings/en-US.json?v=1464442744762. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:11.3770 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 18ms. http://fi:8096/web/bower_components/emby-webcomponents/strings/en-US.json?v=1464442744762
2016-05-28 15:39:11.3770 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 19ms. http://fi:8096/web/strings/sv.json?v=1464442744762
2016-05-28 15:39:11.5899 Info HttpServer: HTTP GET http://fi:8096/emby/system/info/public. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:11.6233 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 34ms. http://fi:8096/emby/system/info/public
2016-05-28 15:39:11.7210 Info HttpServer: HTTP GET http://fi:8096/emby/System/Info. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:11.7868 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 66ms. http://fi:8096/emby/System/Info
2016-05-28 15:39:11.7994 Info HttpServer: HTTP GET http://fi:8096/emby/users/f07fd5c91d194c3e8a734beee1286de2. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:11.8340 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 35ms. http://fi:8096/emby/users/f07fd5c91d194c3e8a734beee1286de2
2016-05-28 15:39:11.8742 Info HttpServer: HTTP POST http://fi:8096/emby/Sessions/Capabilities/Full. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:11.8759 Info HttpServer: HTTP GET http://fi:8096/emby/Users/f07fd5c91d194c3e8a734beee1286de2. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:11.8773 Info HttpServer: WS ws://fi:8096/embywebsocket?api_key=1a59c0d4b02d4b3ca1d62c8822c4d286&deviceId=7c98db8b0629a585c984de4f340fe1e4. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:11.8785 Debug HttpServer: Web socket connection allowed
2016-05-28 15:39:11.9770 Info HttpServer: HTTP Response 204 to 192.168.1.241. Time: 103ms. http://fi:8096/emby/Sessions/Capabilities/Full
2016-05-28 15:39:12.0284 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 153ms. http://fi:8096/emby/Users/f07fd5c91d194c3e8a734beee1286de2
2016-05-28 15:39:12.0431 Info HttpServer: HTTP GET http://fi:8096/emby/Users/f07fd5c91d194c3e8a734beee1286de2. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:12.0525 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 9ms. http://fi:8096/emby/Users/f07fd5c91d194c3e8a734beee1286de2
2016-05-28 15:39:12.0765 Info HttpServer: HTTP GET http://fi:8096/emby/Users/f07fd5c91d194c3e8a734beee1286de2/Views. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:12.3326 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 256ms. http://fi:8096/emby/Users/f07fd5c91d194c3e8a734beee1286de2/Views
2016-05-28 15:39:12.4857 Info App: SessionInfoWebSocketListener Begin transmitting over websocket to 192.168.1.241:55263
2016-05-28 15:39:12.4858 Info App: ScheduledTasksWebSocketListener Begin transmitting over websocket to 192.168.1.241:55263
2016-05-28 15:39:12.4858 Info App: ActivityLogWebSocketListener Begin transmitting over websocket to 192.168.1.241:55263
2016-05-28 15:39:12.5300 Info HttpServer: HTTP GET http://fi:8096/emby/Notifications/f07fd5c91d194c3e8a734beee1286de2/Summary. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:12.5300 Info HttpServer: HTTP GET http://fi:8096/emby/Plugins/SecurityInfo. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:12.5300 Info HttpServer: HTTP GET http://fi:8096/emby/System/Info. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:12.5328 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 2ms. http://fi:8096/emby/System/Info
2016-05-28 15:39:12.5337 Info HttpServer: HTTP GET http://fi:8096/emby/System/ActivityLog/Entries?startIndex=0&limit=7&minDate=2016-05-27T13:39:05.884Z. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:12.5346 Info HttpClient: HttpClientManager POST: https://www.mb3admin.com/admin/service/registration/validate
2016-05-28 15:39:12.5434 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 13ms. http://fi:8096/emby/Notifications/f07fd5c91d194c3e8a734beee1286de2/Summary
2016-05-28 15:39:12.5465 Info HttpServer: HTTP GET http://fi:8096/emby/Sessions. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:12.5465 Info HttpServer: HTTP GET http://fi:8096/emby/ScheduledTasks. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:12.5465 Info HttpServer: HTTP GET http://fi:8096/emby/News/Product?StartIndex=0&Limit=7. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:12.5494 Info HttpServer: HTTP GET http://fi:8096/emby/DisplayPreferences/dashboard?userId=f07fd5c91d194c3e8a734beee1286de2&client=dashboard. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:12.5494 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 16ms. http://fi:8096/emby/System/ActivityLog/Entries?startIndex=0&limit=7&minDate=2016-05-27T13:39:05.884Z
2016-05-28 15:39:12.5674 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 21ms. http://fi:8096/emby/News/Product?StartIndex=0&Limit=7
2016-05-28 15:39:12.5680 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 19ms. http://fi:8096/emby/DisplayPreferences/dashboard?userId=f07fd5c91d194c3e8a734beee1286de2&client=dashboard
2016-05-28 15:39:12.5832 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 37ms. http://fi:8096/emby/ScheduledTasks
2016-05-28 15:39:12.5909 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 44ms. http://fi:8096/emby/Sessions
2016-05-28 15:39:12.6623 Info HttpServer: HTTP GET http://fi:8096/emby/Packages/Updates?PackageType=System. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:12.6796 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 17ms. http://fi:8096/emby/Packages/Updates?PackageType=System
2016-05-28 15:39:12.7290 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 199ms. http://fi:8096/emby/Plugins/SecurityInfo
2016-05-28 15:39:12.8013 Info HttpServer: HTTP GET http://fi:8096/emby/Plugins/SecurityInfo. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:12.8025 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 1ms. http://fi:8096/emby/Plugins/SecurityInfo
2016-05-28 15:39:12.8678 Info HttpServer: HTTP GET http://fi:8096/emby/Packages/Updates?PackageType=UserInstalled. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:12.8945 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 27ms. http://fi:8096/emby/Packages/Updates?PackageType=UserInstalled
2016-05-28 15:39:18.7576 Info App: ActivityLogWebSocketListener Begin transmitting over websocket to 192.168.1.241:55263
2016-05-28 15:39:18.7620 Info App: ActivityLogWebSocketListener stop transmitting over websocket to 192.168.1.241:55263
2016-05-28 15:39:18.7620 Info App: SessionInfoWebSocketListener stop transmitting over websocket to 192.168.1.241:55263
2016-05-28 15:39:18.7620 Info App: ScheduledTasksWebSocketListener stop transmitting over websocket to 192.168.1.241:55263
2016-05-28 15:39:18.8103 Info HttpServer: HTTP GET http://fi:8096/emby/Plugins. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:18.8780 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 68ms. http://fi:8096/emby/Plugins
2016-05-28 15:39:19.0490 Info HttpServer: HTTP GET http://fi:8096/emby/web/configurationpages?pageType=PluginConfiguration. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:19.0580 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 9ms. http://fi:8096/emby/web/configurationpages?pageType=PluginConfiguration
2016-05-28 15:39:22.6846 Info HttpServer: HTTP GET http://fi:8096/emby/System/Logs. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:22.6846 Info HttpServer: HTTP GET http://fi:8096/emby/System/Configuration. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:22.6948 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 10ms. http://fi:8096/emby/System/Configuration
2016-05-28 15:39:22.7114 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 27ms. http://fi:8096/emby/System/Logs
2016-05-28 15:39:27.0106 Info HttpServer: HTTP GET http://fi:8096/emby/System/Logs/Log?name=server-63600044573.txt. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
2016-05-28 15:39:27.0285 Info HttpServer: HTTP Response 200 to 192.168.1.241. Time: 18ms. http://fi:8096/emby/System/Logs/Log?name=server-63600044573.txt
2016-05-28 15:39:39.5210 Info HttpServer: HTTP GET http://fi:8096/emby/System/Logs/Log?name=server-63600046737.txt. UserAgent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0

 

 

The plugin still doeesn't appear in the plugin menu. Maybe I should just, as someone suggested in some other thread, rename series to match TVDB, which at the moment seems like the easiest way to get past my problem and remove some possible sources of failure.
Link to comment
Share on other sites

drashna

I'm seeing the same issues, with the latest versions.

 

Worse, is that it seems to make the library scan unstable (issues with scanning and issues stopping the scan manually).  Removing the plugin manually (deleting the dll) fixes the issues though.

 

 

It would be nice if we could get a status update, so we have an idea of how long it will be until this is fixed/resolved/etc.

Link to comment
Share on other sites

the latest version of the plugin and the latest stable version of the server should be compatible.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...