diff --git a/js/main-editor.js b/js/main-editor.js index f1f64f5..112afa7 100644 --- a/js/main-editor.js +++ b/js/main-editor.js @@ -2631,7 +2631,9 @@ export class Editor extends PrimaryView { }, 60 * 1000); }); _make_button("Share", ev => { - let data = util.b64encode(fflate.zlibSync(new Uint8Array(c2g.synthesize_level(this.stored_level)))); + // FIXME enable this once gliderbot can understand it + //let data = util.b64encode(fflate.zlibSync(new Uint8Array(c2g.synthesize_level(this.stored_level)))); + let data = util.b64encode(c2g.synthesize_level(this.stored_level)); let url = new URL(location); url.searchParams.delete('level'); url.searchParams.delete('setpath');