Skip to content
Snippets Groups Projects
Commit 99ad1781 authored by Johannes Marbach's avatar Johannes Marbach
Browse files

Appease the linter

parent 58559302
No related branches found
No related tags found
No related merge requests found
...@@ -23,6 +23,7 @@ import { ...@@ -23,6 +23,7 @@ import {
IndexedDBStore, IndexedDBStore,
LocalStorageCryptoStore, LocalStorageCryptoStore,
} from "matrix-js-sdk/src/matrix"; } from "matrix-js-sdk/src/matrix";
import indexeddbWorkerFactory from "../workers/indexeddbWorkerFactory"; import indexeddbWorkerFactory from "../workers/indexeddbWorkerFactory";
const localStorage = window.localStorage; const localStorage = window.localStorage;
......
...@@ -15,5 +15,5 @@ limitations under the License. ...@@ -15,5 +15,5 @@ limitations under the License.
*/ */
export default function blurhashWorkerFactory(options?: WorkerOptions | undefined): Worker { export default function blurhashWorkerFactory(options?: WorkerOptions | undefined): Worker {
return new Worker(new URL("../workers/indexeddb.worker.ts", import.meta.url), options) return new Worker(new URL("../workers/indexeddb.worker.ts", import.meta.url), options);
} }
...@@ -15,5 +15,5 @@ limitations under the License. ...@@ -15,5 +15,5 @@ limitations under the License.
*/ */
export default function blurhashWorkerFactory(options?: WorkerOptions | undefined): Worker { export default function blurhashWorkerFactory(options?: WorkerOptions | undefined): Worker {
return new Worker(new URL("../workers/playback.worker.ts", import.meta.url), options) return new Worker(new URL("../workers/playback.worker.ts", import.meta.url), options);
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment