1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-03 23:50:33 +02:00

Mobile: Plugins: Fix incorrect Node exports emulation (#10776)

This commit is contained in:
Henry Heino
2024-07-23 12:10:59 -07:00
committed by GitHub
parent afcd2d2a39
commit 331f7ebe5c
2 changed files with 3 additions and 3 deletions

View File

@ -59,8 +59,8 @@ const useContentScripts = (pluginStates: PluginStates) => {
if (event.cancelled) return;
const contentScriptModule = `(function () {
const module = { exports: null };
const exports = {};
const module = { exports: exports };
${content}