Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions xbmc/addons/Repository.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ CRepository::FetchStatus CRepository::FetchIfChanged(const std::string& oldCheck
// not possible)
recheckAfter = *std::min_element(recheckAfterTimes.begin(), recheckAfterTimes.end());
// If all directories have checksums and they match the last one, nothing has changed
if (dirChecksums.size() == m_dirs.size() && oldChecksum == checksum)
return STATUS_NOT_MODIFIED;
//if (dirChecksums.size() == m_dirs.size() && oldChecksum == checksum)
// return STATUS_NOT_MODIFIED;
}

for (const auto& dirTuple : dirChecksums)
Expand Down