From 974d46dbf198ad7d8cd55bb1827f0a74105375de Mon Sep 17 00:00:00 2001 From: dec05eba Date: Thu, 19 Nov 2020 17:57:18 +0100 Subject: Matrix: remove event cache on login --- src/plugins/Matrix.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/plugins/Matrix.cpp') diff --git a/src/plugins/Matrix.cpp b/src/plugins/Matrix.cpp index b0c83cc..b176824 100644 --- a/src/plugins/Matrix.cpp +++ b/src/plugins/Matrix.cpp @@ -2958,6 +2958,10 @@ namespace QuickMedia { remove(matrix_sync_data_path.data.c_str()); Path filter_cache_path = get_storage_dir().join("matrix").join("filter"); remove(filter_cache_path.data.c_str()); + for_files_in_dir(get_cache_dir().join("matrix").join("events"), [](const std::filesystem::path &filepath) { + remove(filepath.c_str()); + return true; + }); if(!json_root.IsObject()) { err_msg = "Failed to parse matrix login response"; -- cgit v1.2.3