We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3368723 commit 091b06bCopy full SHA for 091b06b
src/server/InputHandler.ts
@@ -209,6 +209,7 @@ export class InputHandler {
209
case "clipboard-push": {
210
if (msg.text) {
211
// TEMP: fallback using typing instead of real clipboard
212
+ // TODO: Replace with native clipboard write
213
try {
214
await keyboard.type(msg.text)
215
} catch (err) {
@@ -235,7 +236,7 @@ export class InputHandler {
235
236
// ❗ send back to client (IMPORTANT)
237
this.sendToClient({
238
type: "clipboard-text",
- text: "CLIPBOARD_DATA_UNAVAILABLE",
239
+ text: "Clipboard data temporarily unavailable",
240
})
241
break
242
}
0 commit comments