Inconsistent date display in TV Guide (1 Viewer)

drumrob

MP Donator
  • Premium Supporter
  • November 28, 2017
    19
    20
    California
    Home Country
    United States of America United States of America
    Installed: It works! (US region). May 2nd now displays as 05/02. Older recordings display as 12/18 2018
    This might have seemed trivial, but I really appreciate everyone's work on this! After living in Germany for many years, I was used to the European date format. But now I have been back in the US for several years and have become used to the US format. The date display in MP was messing with my brain o_O
    Thank you Owlsroost, mrj and catavolt! (y)
    (Small donation on the way :))
     

    Owlsroost

    Retired Team Member
  • Premium Supporter
  • October 28, 2008
    5,540
    5,038
    Cambridge
    Home Country
    United Kingdom United Kingdom
    Installed: It works! (US region). May 2nd now displays as 05/02. Older recordings display as 12/18 2018
    This might have seemed trivial, but I really appreciate everyone's work on this! After living in Germany for many years, I was used to the European date format. But now I have been back in the US for several years and have become used to the US format. The date display in MP was messing with my brain o_O
    Thank you Owlsroost, mrj and catavolt! (y)
    (Small donation on the way :))

    OK, good.

    I'll add the fix to the list for inclusion in MP 1.23 pre-release.

    (and thanks mrj for your work on the fix :) )
     

    mrj

    Portal Pro
    January 27, 2012
    252
    100
    @Owlsroost
    I have looked at the patch, there is regression in my patch not related to the month/day problem.
    Patch from 'mrj' added - see https://forum.team-mediaportal.com/threa… · MediaPortal/MediaPortal-1@92e2d36

    look at the last lines in the link above.
    Original lines
    if (string.IsNullOrEmpty(fileName) || fileName.StartsWith("http://") || fileName.StartsWith("https://") ||
    !File.Exists(fileName) || (extension == ".tsbuffer" || extension == ".ts"))
    My lines
    if (string.IsNullOrEmpty(fileName) || fileName.StartsWith("http://") || !File.Exists(fileName) || (extension == ".tsbuffer" || extension == ".ts"))
    return false;

    It is the "fileName.StartsWith("https://") || " that is missing in the file I supplied.

    /mrj
     
    Last edited:

    mrj

    Portal Pro
    January 27, 2012
    252
    100
    @Owlsroost
    I have tested your new test build with the regression fix. The TV and radio/{recorded, search... Guide, and scheduled} fix still works as intended for US, UK, DE and FR.
    The regression for Jira - MediaPortal Jira I do not know how to test.

    mrj
     
    Last edited:

    Users who are viewing this thread

    Top Bottom