summaryrefslogtreecommitdiff
path: root/src/scriptcheck.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/scriptcheck.sml')
-rw-r--r--src/scriptcheck.sml1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/scriptcheck.sml b/src/scriptcheck.sml
index c4623fc3..6dc11c65 100644
--- a/src/scriptcheck.sml
+++ b/src/scriptcheck.sml
@@ -106,6 +106,7 @@ fun classify (ds, ps) =
| ECase (e, pes, _) => hasClient e orelse List.exists (hasClient o #2) pes
| EError (e, _) => hasClient e
| EReturnBlob {blob = e1, mimeType = e2, ...} => hasClient e1 orelse hasClient e2
+ | ERedirect (e, _) => hasClient e
| EWrite e => hasClient e
| ESeq (e1, e2) => hasClient e1 orelse hasClient e2
| ELet (_, _, e1, e2) => hasClient e1 orelse hasClient e2