Fix linting errors

This commit is contained in:
Owen
2026-01-19 17:57:55 -08:00
parent 7ae6b2df05
commit 1a36cd0317
4 changed files with 4 additions and 4 deletions

View File

@@ -178,7 +178,7 @@ export const handleOlmPingMessage: MessageHandler = async (context) => {
logger.debug(`handleOlmPingMessage: Got config version: ${configVersion} (type: ${typeof configVersion})`);
if (configVersion == null || configVersion === undefined) {
logger.debug(`handleOlmPingMessage: could not get config version from server for olmId: ${olm.olmId}`)
logger.debug(`handleOlmPingMessage: could not get config version from server for olmId: ${olm.olmId}`);
}
if (message.configVersion != null && configVersion != null && configVersion != message.configVersion) {

View File

@@ -66,7 +66,7 @@ export async function sendOlmSyncMessage(olm: Olm, client: Client) {
});
}
logger.debug("sendOlmSyncMessage: sending sync message")
logger.debug("sendOlmSyncMessage: sending sync message");
await sendToClient(olm.olmId, {
type: "olm/sync",