Pictures are not rotated according to EXIF code (1 Viewer)

Sebastiii

Development Group
  • Team MediaPortal
  • November 12, 2007
    16,583
    10,403
    France
    Home Country
    France France
    So with that mark ' it failed ?
    Will try soon thanks :)
    Can you confirm that with that mark in common name like : Photo's it failed too ?
     

    Sebastiii

    Development Group
  • Team MediaPortal
  • November 12, 2007
    16,583
    10,403
    France
    Home Country
    France France
    Good :)

    Thanks i will try to look if it can be fixed but maybe it's an issue on official sqlite bin.
     

    Sebastiii

    Development Group
  • Team MediaPortal
  • November 12, 2007
    16,583
    10,403
    France
    Home Country
    France France
    Found it but can't fix it

    Code:
        /// <summary>
        /// This will remove all chars which are not allowed for the DB and quote / escape when needed
        /// </summary>
        /// <param name="strTxt">The value to be stored</param>
        private static string FilterText(string strTxt)
        {
          if (string.IsNullOrEmpty(strTxt))
          {
            return Strings.Unknown;
          }
          strTxt = strTxt.Replace("'", "''").Trim();
    
          return strTxt;
        }

    It's clear, it seems that ' is not handled for good value in db.
     

    Sebastiii

    Development Group
  • Team MediaPortal
  • November 12, 2007
    16,583
    10,403
    France
    Home Country
    France France
    Jira created and will link to an installer for test :)
     

    Users who are viewing this thread

    Top Bottom