diff options
| -rw-r--r-- | WebCore/bindings/js/JSNavigatorCustom.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/bindings/js/JSNavigatorCustom.cpp b/WebCore/bindings/js/JSNavigatorCustom.cpp index af0c9ae..e33fd78 100644 --- a/WebCore/bindings/js/JSNavigatorCustom.cpp +++ b/WebCore/bindings/js/JSNavigatorCustom.cpp @@ -58,7 +58,7 @@ JSC::JSValue WebCore::JSNavigator::isApplicationInstalled(JSC::ExecState* exec, return jsUndefined(); } - String appName = args.at(0).toString(exec); + String appName = ustringToString(args.at(0).toString(exec)); JSObject* object; if (!(object = args.at(1).getObject())) { |
