I’m using the plugin.pasteboard
in one of my apps, and I’ve noticed that the first time the app runs, a message appears saying: “MyAppName pasted from your clipboard.”
This message suggests that my app is reading the clipboard, but in reality, it only accesses the clipboard when the user selects a specific action in one of the game’s scenes. The plugin is loaded from main.lua
using require("plugin.pasteboard")
, and it seems that simply requiring the plugin triggers it to read the clipboard. Otherwise, there shouldn’t be any reason for this message to appear.