1 files changed, 3 insertions, 3 deletions
diff --git a/MatrixRoomUtils.Desktop/MainWindow.axaml.cs b/MatrixRoomUtils.Desktop/MainWindow.axaml.cs
index f89bbfa..89f9d52 100644
--- a/MatrixRoomUtils.Desktop/MainWindow.axaml.cs
+++ b/MatrixRoomUtils.Desktop/MainWindow.axaml.cs
@@ -25,8 +25,8 @@ public partial class MainWindow : Window {
InitializeComponent();
- _logger.LogInformation("Cache location: " + _configuration.CacheStoragePath);
- _logger.LogInformation("Data location: " + _configuration.DataStoragePath);
+ _logger.LogInformation("Cache location: {}", _configuration.CacheStoragePath);
+ _logger.LogInformation("Data location: {}", _configuration.DataStoragePath);
// for (int i = 0; i < 100; i++) {
@@ -40,7 +40,7 @@ public partial class MainWindow : Window {
var hs = await _storageWrapper.GetCurrentSessionOrPrompt();
var rooms = await hs.GetJoinedRooms();
foreach (var room in rooms) {
- roomList.Children.Add(new RoomListEntry(_scopeFactory, new RoomInfo(room)));
+ // roomList.Children.Add(new RoomListEntry(_scopeFactory, new RoomInfo(room)));
}
base.OnLoaded(e);
}
|