From f93ea7d09616034e9ac545cdd2b88500aa82e4bf Mon Sep 17 00:00:00 2001 From: Matt Mastracci Date: Fri, 22 Sep 2023 10:49:05 -0600 Subject: [PATCH] fix: fix op_format_file_name op reference --- core/02_error.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/02_error.js b/core/02_error.js index 57e0ad0fa..4c297eae0 100644 --- a/core/02_error.js +++ b/core/02_error.js @@ -22,7 +22,7 @@ fileName.startsWith("data:") && fileName.length > DATA_URL_ABBREV_THRESHOLD ) { - return ops.op_format_data_url(fileName); + return ops.op_format_file_name(fileName); } return fileName; }