Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/a673aedbb6d757ed2c5860c2e88dbfb30c97cb36?style=unified&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

OS X 10.10: Fixed crashing on .ubz export

preferencesAboutTextFull
Craig Watson 9 years ago
parent 8e1b5c4ee0
commit a673aedbb6
  1. 2
      src/frameworks/UBPlatformUtils_mac.mm

@ -152,12 +152,12 @@ void UBPlatformUtils::setFileType(const QString &filePath, unsigned long fileTyp
CFStringRef path = CFStringCreateWithCharacters(0, reinterpret_cast<const UniChar *>(filePath.unicode()), filePath.length());
const CFIndex maxSize = CFStringGetMaximumSizeOfFileSystemRepresentation(path);
UInt8 fileSystemRepresentation[maxSize];
CFRelease(path);
if (!CFStringGetFileSystemRepresentation(path, (char*)fileSystemRepresentation, maxSize))
{
return;
}
CFRelease(path);
OSStatus status = FSPathMakeRefWithOptions(fileSystemRepresentation, kFSPathMakeRefDefaultOptions, &ref, NULL);
if (status != noErr)
{

Loading…
Cancel
Save