Recently added TV series stuck

Hi Guys, not sure why but an old series (Mrs Brown’s Boys) keeps showing as the first entry in my recently added TV shows. The show itself has not aired for years and I have double checked the modified date in the root directory + series and all files are a couple of years since modified?

Anything I can check to get this updated?

Kind regards
Tylor

Any ideas?

Using Plex Web, change the view to Episodes, then sort by Date Added in descending order (newest first). Get me the XML for the first episode for that series shown in that list.

Apologies… how do I do this using google chrome?

Follow these instructions, https://support.plex.tv/hc/en-us/articles/201998867-Investigate-Media-Information-and-Formats.

I think I didn’t see as was trying to get to “info” from season folder, looks like you have to do it at each episode level.

Xml for episode 1 below…

MediaContainer size=“1” allowSync=“1” identifier=“com.plexapp.plugins.library” librarySectionID=“1” librarySectionTitle=“TV Shows” librarySectionUUID=“1ee2e3f0-eacb-41e0-be71-d061240d2bbd” mediaTagPrefix="/system/bundle/media/flags/" mediaTagVersion=“1481130312”>











</MediaContaine /r>

<MediaContainer size="1" allowSync="1" identifier="com.plexapp.plugins.library" librarySectionID="1" librarySectionTitle="TV Shows" librarySectionUUID="1ee2e3f0-eacb-41e0-be71-d061240d2bbd" mediaTagPrefix="/system/bundle/media/flags/" mediaTagVersion="1481130312"> <Video ratingKey="2614" key="/library/metadata/2614" parentRatingKey="2613" grandparentRatingKey="2605" guid="com.plexapp.agents.thetvdb://219631/1/1?lang=en" librarySectionID="1" type="episode" title="The Mammy" titleSort="Mammy" grandparentKey="/library/metadata/2605" parentKey="/library/metadata/2613" grandparentTitle="Mrs Brown's Boys" contentRating="TV-14" summary="Agnes Brown has family troubles to contend with: her son Dermot has fallen out with Maria Nicholson, his long-term girlfriend, and Grandad is feeling poorly. After a sleepless night, Mrs. Brown decides to try to sort out Dermot and Maria's problem by giving Maria the benefit of her advice. But her heart-to-heart with Maria only succeeds in making the dispute worse." index="1" parentIndex="1" rating="7.7" viewOffset="83010" viewCount="1" lastViewedAt="1480057345" year="2011" thumb="/library/metadata/2614/thumb/1481453408" art="/library/metadata/2605/art/1481453409" parentThumb="/library/metadata/2613/thumb/1481453409" grandparentThumb="/library/metadata/2605/thumb/1481453409" grandparentArt="/library/metadata/2605/art/1481453409" duration="1744128" originallyAvailableAt="2011-01-01" addedAt="2147483647" updatedAt="1481453408"> <Media videoResolution="720" id="52699" duration="1744128" bitrate="3588" width="1280" height="720" aspectRatio="1.78" audioChannels="2" audioCodec="ac3" videoCodec="h264" container="mkv" videoFrameRate="PAL" videoProfile="high"> <Part accessible="1" exists="1" id="52740" key="/library/parts/52740/2147483647/file.mkv" duration="1744128" file="E:\Tv\Mrs Brown's Boys\Season 1\Mrs Brown's Boys - S01E01 - The Mammy.mkv" size="782276277" container="mkv" deepAnalysisVersion="2" requiredBandwidths="4043,3679,3601,3601,3601,3601,3601,3601" videoProfile="high"> <Stream id="111333" streamType="1" default="1" codec="h264" index="0" bitrate="3396" bitDepth="8" chromaSubsampling="4:2:0" frameRate="25.000" hasScalingMatrix="0" height="720" level="31" profile="high" refFrames="4" requiredBandwidths="3851,3487,3409,3409,3409,3409,3409,3409" scanType="progressive" width="1280"/> <Stream id="111334" streamType="2" selected="1" default="1" codec="ac3" index="1" channels="2" bitrate="192" audioChannelLayout="stereo" requiredBandwidths="192,192,192,192,192,192,192,192" samplingRate="48000"/> </Part> </Media> <Director id="1383" tag="Ben Kellett"/> <Writer id="1382" tag="Brendan O'Carroll"/> <Extras size="0"></Extras> </Video> </MediaContainer>

addedAt="2147483647"

PMS thinks your file was added at Tue, 19 Jan 2038 03:14:07 GMT. So either a clock got mixed up somewhere, that date got read from your file (which it shouldn’t be doing), or a glitch changed the time.

Follow the steps from this other post, https://forums.plex.tv/discussion/comment/908454/#Comment_908454, for that episode (and any other episodes you think are wrong) and you should be good.

Edit - This was reset the added date to today. If you don’t want that, change the system date on your computer first to the date you want. Remember to change it back when you are done.

Perfect, thanks MovieFan

Mine was doing this for about 6 different shows…the XML did indeed show the “addedAt” parameter as being sometime in 2037 when converted from the UNIX timestamp.

Here’s what I did:

  1. Stop Plex Media Server on my Mac Pro
  2. In Terminal:
    sqlite3 ~/Library/Application\ Support/Plex\ Media\ Server/Plug-in\ Support/Databases/com.plexapp.plugins.library.db "UPDATE metadata_items SET added_at = created_at WHERE DATETIME(added_at) > DATETIME('now');"
  3. Restart Plex Media Server

This fixed mine so the “Recently Added” on my PlexWeb home and all devices now accurately reflects what was added and when.

1 Like

worked like a charm. Thank you!