Skip to content
Extraits de code Groupes Projets
Non vérifiée Valider 5ac74eca rédigé par Sorunome's avatar Sorunome
Parcourir les fichiers

fix room creation

parent cad264ce
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -270,7 +270,7 @@ export class DbRoomStore {
}
public async removeEntriesByMatrixRoomId(matrixId: string) {
const entries = (await this.db.All(`SELECT * room_entries WHERE matrix_id = $matrixId`, {matrixId})) || [];
const entries = (await this.db.All(`SELECT * FROM room_entries WHERE matrix_id = $matrixId`, {matrixId})) || [];
entries.map((entry) => {
if (entry.remote_id) {
return this.removeEntriesByRemoteRoomId(entry.remote_id as string);
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter