Mobile: Plugin support

That should now be fixed! (I plan to release a new prerelease version later today.)

Information about the fix

A debug statement attempted to log plugin messages with logger.debug. That debug statement tried to convert a message sent by the anchor link plugin to a string, which failed with the error TypeError: Cannot determine default value of object.

Changing the log statement from

	logger.debug(`Handling message from content script: ${contentScriptId}: ${message}`);

to

	logger.debug(`Handling message from content script: ${contentScriptId}:`, message);

seems to fix the issue.

Edit: APK with the fix.

1 Like