quickscript icon indicating copy to clipboard operation
quickscript copied to clipboard

Error message missing if output is not a string

Open Metaxal opened this issue 2 years ago • 0 comments

The following script should show an exception that the output is not a string, or maybe convert the result to a string:

#lang racket/base
(require quickscript)

(define-script sloc
  #:label "foo"
  #:output-to message-box
  (λ (selection)
    0))

Currently, it just doesn't show a message box at all, and fails to indicate it fails.

Metaxal avatar Mar 06 '23 14:03 Metaxal