Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/ef47625879a1c6c1497bfb93f945f1476cb497c9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
2 deletions
src/board/UBLibraryController.cpp
@ -324,16 +324,17 @@ QList<UBLibElement*> UBLibraryController::addVirtualElementsForItemPath(const QS
if ( pPath = = mInteractiveUserDirectoryPath . toLocalFile ( ) ) {
content < < mInternalLibElements ;
content < < listElementsInPath ( UBSettings : : settings ( ) - > uniboardInteractiveLibraryDirectory ( ) ) ;
content < < listElementsInPath ( UBSettings : : settings ( ) - > uniboardInteractiveFavoritesDirectory ( ) ) ;
}
else if ( pPath = = mPicturesStandardDirectoryPath . toLocalFile ( ) ) {
QUrl path = QUrl : : fromLocalFile ( UBSettings : : settings ( ) - > uniboardImageLibraryDirectory ( ) ) ;
userPath ( path ) ;
content < < listElementsInPath ( path . toLocalFile ( ) ) ;
}
else if ( pPath = = mInteractiveUserDirectoryPath . toLocalFile ( ) ) {
/* else if (pPath == mInteractiveUserDirectoryPath.toLocalFile()){
content < < listElementsInPath ( UBSettings : : settings ( ) - > uniboardInteractiveLibraryDirectory ( ) ) ;
content < < listElementsInPath ( UBSettings : : settings ( ) - > uniboardInteractiveFavoritesDirectory ( ) ) ;
}
} */
return content ;
}