diff --git a/src/domain/session/verification/stages/VerificationCancelledViewModel.ts b/src/domain/session/verification/stages/VerificationCancelledViewModel.ts index 75cc0e5d..3e6abbcf 100644 --- a/src/domain/session/verification/stages/VerificationCancelledViewModel.ts +++ b/src/domain/session/verification/stages/VerificationCancelledViewModel.ts @@ -17,7 +17,7 @@ limitations under the License. import {ViewModel, Options as BaseOptions} from "../../../ViewModel"; import {SegmentType} from "../../../navigation/index"; import type {CancelReason} from "../../../../matrix/verification/SAS/channel/types"; -import type {IChannel} from "../../../../matrix/verification/SAS/channel/Channel"; +import type {IChannel} from "../../../../matrix/verification/SAS/channel/IChannel"; type Options = BaseOptions & { cancellation: IChannel["cancellation"]; diff --git a/src/matrix/verification/CrossSigning.ts b/src/matrix/verification/CrossSigning.ts index c23c2f54..665d767f 100644 --- a/src/matrix/verification/CrossSigning.ts +++ b/src/matrix/verification/CrossSigning.ts @@ -18,7 +18,7 @@ import {verifyEd25519Signature, SignatureVerification} from "../e2ee/common"; import {BaseObservableValue, RetainedObservableValue} from "../../observable/value"; import {pkSign} from "./common"; import {SASVerification} from "./SAS/SASVerification"; -import {ToDeviceChannel} from "./SAS/channel/Channel"; +import {ToDeviceChannel} from "./SAS/channel/ToDeviceChannel"; import {VerificationEventType} from "./SAS/channel/types"; import {ObservableMap} from "../../observable/map"; import {SASRequest} from "./SAS/SASRequest"; diff --git a/src/matrix/verification/SAS/SASVerification.ts b/src/matrix/verification/SAS/SASVerification.ts index b6265db5..57065218 100644 --- a/src/matrix/verification/SAS/SASVerification.ts +++ b/src/matrix/verification/SAS/SASVerification.ts @@ -19,7 +19,7 @@ import type {BaseSASVerificationStage} from "./stages/BaseSASVerificationStage"; import type {Account} from "../../e2ee/Account.js"; import type {DeviceTracker} from "../../e2ee/DeviceTracker.js"; import type * as OlmNamespace from "@matrix-org/olm"; -import type {IChannel} from "./channel/Channel"; +import type {IChannel} from "./channel/IChannel"; import type {HomeServerApi} from "../../net/HomeServerApi"; import type {Timeout} from "../../../platform/types/types"; import type {Clock} from "../../../platform/web/dom/Clock.js"; diff --git a/src/matrix/verification/SAS/channel/MockChannel.ts b/src/matrix/verification/SAS/channel/MockChannel.ts index cb990138..55d5f2dd 100644 --- a/src/matrix/verification/SAS/channel/MockChannel.ts +++ b/src/matrix/verification/SAS/channel/MockChannel.ts @@ -1,7 +1,7 @@ import type {ILogItem} from "../../../../lib"; import {createCalculateMAC} from "../mac"; import {VerificationCancelledError} from "../VerificationCancelledError"; -import {IChannel} from "./Channel"; +import {IChannel} from "./IChannel"; import {CancelReason, VerificationEventType} from "./types"; import {getKeyEd25519Key} from "../../CrossSigning"; import {getDeviceEd25519Key} from "../../../e2ee/common"; diff --git a/src/matrix/verification/SAS/channel/Channel.ts b/src/matrix/verification/SAS/channel/ToDeviceChannel.ts similarity index 100% rename from src/matrix/verification/SAS/channel/Channel.ts rename to src/matrix/verification/SAS/channel/ToDeviceChannel.ts diff --git a/src/matrix/verification/SAS/stages/BaseSASVerificationStage.ts b/src/matrix/verification/SAS/stages/BaseSASVerificationStage.ts index 1c2506e0..534a3ca8 100644 --- a/src/matrix/verification/SAS/stages/BaseSASVerificationStage.ts +++ b/src/matrix/verification/SAS/stages/BaseSASVerificationStage.ts @@ -17,7 +17,7 @@ import type {ILogItem} from "../../../../logging/types"; import type {Account} from "../../../e2ee/Account.js"; import type {DeviceTracker} from "../../../e2ee/DeviceTracker.js"; import type {CrossSigning} from "../../CrossSigning"; -import {IChannel} from "../channel/Channel"; +import {IChannel} from "../channel/IChannel"; import {HomeServerApi} from "../../../net/HomeServerApi"; import {SASProgressEvents} from "../types"; import {EventEmitter} from "../../../../utils/EventEmitter"; diff --git a/src/matrix/verification/SAS/types.ts b/src/matrix/verification/SAS/types.ts index a46ee085..17b3e316 100644 --- a/src/matrix/verification/SAS/types.ts +++ b/src/matrix/verification/SAS/types.ts @@ -13,7 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ -import type {IChannel} from "./channel/Channel"; +import type {IChannel} from "./channel/IChannel"; import type {CalculateSASStage} from "./stages/CalculateSASStage"; import type {SelectVerificationMethodStage} from "./stages/SelectVerificationMethodStage";