1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-08-06 12:02:40 +03:00

Appease the linter

This commit is contained in:
Travis Ralston
2021-09-25 20:47:59 -06:00
parent 82a254b7bd
commit eab0c54663
3 changed files with 6 additions and 6 deletions

View File

@@ -15,7 +15,7 @@ limitations under the License.
*/ */
import { MatrixClient } from "../client"; import { MatrixClient } from "../client";
import { EventType, IEncryptedFile, RelationType, UNSTABLE_MSC3089_BRANCH } from "../@types/event"; import { IEncryptedFile, RelationType, UNSTABLE_MSC3089_BRANCH } from "../@types/event";
import { IContent, MatrixEvent } from "./event"; import { IContent, MatrixEvent } from "./event";
import { MSC3089TreeSpace } from "./MSC3089TreeSpace"; import { MSC3089TreeSpace } from "./MSC3089TreeSpace";
@@ -211,7 +211,7 @@ export class MSC3089Branch {
break; // prevent infinite loop break; // prevent infinite loop
} }
} }
} while(!!childEvent); } while (childEvent);
return fileHistory; return fileHistory;
} }