diff options
Diffstat (limited to 'fxjs/cjs_report.cpp')
-rw-r--r-- | fxjs/cjs_report.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fxjs/cjs_report.cpp b/fxjs/cjs_report.cpp index 6e205ef7e7..aa4ef0224b 100644 --- a/fxjs/cjs_report.cpp +++ b/fxjs/cjs_report.cpp @@ -38,12 +38,12 @@ CJS_Report::~CJS_Report() = default; CJS_Return CJS_Report::writeText( CJS_Runtime* pRuntime, const std::vector<v8::Local<v8::Value>>& params) { - // Unsafe, not supported. - return CJS_Return(); + // Unsafe, not supported, but do not return error. + return CJS_Return::Success(); } CJS_Return CJS_Report::save(CJS_Runtime* pRuntime, const std::vector<v8::Local<v8::Value>>& params) { - // Unsafe, not supported. - return CJS_Return(); + // Unsafe, not supported, but do not return error. + return CJS_Return::Success(); } |