about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmma [it/its]@Rory& <root@rory.gay>2024-03-22 17:45:19 +0100
committerEmma [it/its]@Rory& <root@rory.gay>2024-03-22 17:45:19 +0100
commitfc3d89ad7422dedb8763783c6ebb5d70fcc2c536 (patch)
treed46e22858059b76e8968704926d8f4685853be30
parentChanges (diff)
downloadLibMatrix-fc3d89ad7422dedb8763783c6ebb5d70fcc2c536.tar.xz
Fix merge conficts between machines
m---------ArcaneLibs0
m---------ExampleBots/ModerationBot0
m---------ExampleBots/PluralContactBotPoC0
-rw-r--r--Tests/LibMatrix.HomeserverEmulator/Controllers/Rooms/RoomStateController.cs2
-rw-r--r--Tests/TestDataGenerator/Program.cs2
5 files changed, 2 insertions, 2 deletions
diff --git a/ArcaneLibs b/ArcaneLibs
-Subproject 409890ccfedf3ad3dd0ffd9866a19b730f613ea
+Subproject 7c6627c1311dbaea9a6f488334c71c10990ab3d
diff --git a/ExampleBots/ModerationBot b/ExampleBots/ModerationBot
-Subproject 8579db2c9099630b6a268015d586db73435032f
+Subproject c137f94aeb122c636629fb9361dd73626594f69
diff --git a/ExampleBots/PluralContactBotPoC b/ExampleBots/PluralContactBotPoC
-Subproject 7ef0970090c1525a60063c0ba7c0a4bd9fd8cc2
+Subproject 4072e5922b671c9d93dbf9727123046054ca6da
diff --git a/Tests/LibMatrix.HomeserverEmulator/Controllers/Rooms/RoomStateController.cs b/Tests/LibMatrix.HomeserverEmulator/Controllers/Rooms/RoomStateController.cs
index 46c3062..cb5f213 100644
--- a/Tests/LibMatrix.HomeserverEmulator/Controllers/Rooms/RoomStateController.cs
+++ b/Tests/LibMatrix.HomeserverEmulator/Controllers/Rooms/RoomStateController.cs
@@ -102,7 +102,7 @@ public class RoomStateController(ILogger<RoomStateController> logger, TokenServi
         evt.Type = eventType;
         evt.StateKey = stateKey;
         return new EventIdResponse(){
-            EventId = evt.EventId
+            EventId = evt.EventId ?? throw new InvalidOperationException("EventId is null")
         };
     }
 }
\ No newline at end of file
diff --git a/Tests/TestDataGenerator/Program.cs b/Tests/TestDataGenerator/Program.cs
index 5c20958..2583817 100644
--- a/Tests/TestDataGenerator/Program.cs
+++ b/Tests/TestDataGenerator/Program.cs
@@ -19,7 +19,7 @@ var host = Host.CreateDefaultBuilder(args).ConfigureServices((_, services) => {
     services.AddSingleton<AppServiceConfiguration>();
 
     services.AddRoryLibMatrixServices();
-    services.AddBot(false);
+    services.AddMatrixBot();//.AddCommandHandler().AddCommands([typeof()]);
 
     services.AddHostedService<DataFetcher>();
 }).UseConsoleLifetime().Build();