diff options
-rw-r--r-- | desktop/source/lib/init.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 4bd1beda9abc..1e667eeb76b0 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -5346,6 +5346,9 @@ static void doc_postUnoCommand(LibreOfficeKitDocument* pThis, const char* pComma if (!isCommandAllowed(aCommand)) return; + if (gImpl && aCommand == ".uno:None") + return; + LibLODocument_Impl* pDocument = static_cast<LibLODocument_Impl*>(pThis); std::vector<beans::PropertyValue> aPropertyValuesVector(jsonToPropertyValuesVector(pArguments)); |