Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/724e5467eb8ab82e5d86eabe57edbbc00dedac52
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
1 deletions
src/adaptors/UBSvgSubsetAdaptor.cpp
@ -546,6 +546,7 @@ UBGraphicsScene* UBSvgSubsetAdaptor::UBSvgSubsetReader::loadScene()
UBGraphicsPolygonItem * polygonItem = 0 ;
QString parentId = mXmlReader . attributes ( ) . value ( mNamespaceUri , " parent " ) . toString ( ) ;
if ( mXmlReader . name ( ) = = " polygon " )
polygonItem = polygonItemFromPolygonSvg ( mScene - > isDarkBackground ( ) ? Qt : : white : Qt : : black ) ;
else if ( mXmlReader . name ( ) = = " line " )
@ -554,7 +555,8 @@ UBGraphicsScene* UBSvgSubsetAdaptor::UBSvgSubsetReader::loadScene()
if ( parentId . isEmpty ( ) & & strokesGroup )
parentId = strokesGroup - > uuid ( ) . toString ( ) ;
Q_ASSERT ( ! parentId . isEmpty ( ) ) ;
if ( parentId . isEmpty ( ) )
parentId = QUuid : : createUuid ( ) . toString ( ) ;
if ( polygonItem )
{