Skip to content

Commit

Permalink
Merge pull request #16691 from arnova/double_redact_fix
Browse files Browse the repository at this point in the history
fixed: Double redact
  • Loading branch information
arnova committed Oct 3, 2019
2 parents 1450669 + 9d54869 commit a5f58bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/video/VideoDatabase.cpp
Expand Up @@ -6032,7 +6032,7 @@ void CVideoDatabase::EraseVideoSettings(const CFileItem &item)
{
std::string sql = PrepareSQL("DELETE FROM settings WHERE idFile=%i", idFile);

CLog::Log(LOGINFO, "Deleting settings information for files %s", CURL::GetRedacted(CURL::GetRedacted(item.GetPath()).c_str()));
CLog::Log(LOGINFO, "Deleting settings information for files %s", CURL::GetRedacted(item.GetPath()).c_str());
m_pDS->exec(sql);
}
catch (...)
Expand Down

0 comments on commit a5f58bf

Please sign in to comment.