Browse Source

Change variable name

Sander Borst 2 years ago
parent
commit
abb0596ed2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      resources/js/preload.js

+ 2 - 2
resources/js/preload.js

@@ -24,8 +24,8 @@ function getFilePathFromClipboard () {
  * @returns Buffer containing the contents of the clipboard for the specified format, or null if not available.
  */
 function getClipboardData (format) {
-  if (clipboard.has(mime, "clipboard")) {
-    return clipboard.readBuffer(mime)
+  if (clipboard.has(format, "clipboard")) {
+    return clipboard.readBuffer(format)
   }
   else {
     return null;