Skip to content
Snippets Groups Projects
Select Git revision
  • aa9e381cd0746363f2f7b9859c6413d9b8c0eee5
  • release default
  • master protected
  • feature/xx-4717/logLevel
  • XX-4626/SingleUsePackage
  • josh/DmPackage
  • xx-4437/no-registration
  • feature/project/DM
  • project/channels
  • feature/ctidh
  • Jakub/rootless-CI
  • jono/wasmDemo
  • feature/XX-4108/updateProtoc
  • feature/hotfix/unsafe_send_to_self
  • Anne/OldSessionTesting
  • hotfix/groupChat
  • josh/groupCreationScript
  • feature/XX-3797/restore
  • feature/XX-3789/DeleteIndividualRequests
  • dev
  • feature/debugSendCMIX
21 results

e2eReport.py

Blame
  • dmIndexedDbWorker.js 765 B
    ////////////////////////////////////////////////////////////////////////////////
    // Copyright © 2022 xx foundation                                             //
    //                                                                            //
    // Use of this source code is governed by a license that can be found in the  //
    // LICENSE file.                                                              //
    ////////////////////////////////////////////////////////////////////////////////
    
    importScripts('wasm_exec.js');
    
    const go = new Go();
    const binPath = 'xxdk-dmIndexedDkWorker.wasm'
    WebAssembly.instantiateStreaming(fetch(binPath), go.importObject).then((result) => {
        go.run(result.instance);
        LogLevel(1);
    }).catch((err) => {
        console.error(err);
    });