You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem occurs when we are trying to write metadata of object into pastboard at IMBObjectViewController.m
(NSUInteger) writeItemsAtIndexes:(NSIndexSet_)inIndexes toPasteboard:(NSPasteboard_)inPasteboard function
{
...
// Keep all 3 items in sync, so the arrays are of the same length.
[fileTypes addObject:type];
[titles addObject:object.name];
[metadatas addObject:object.metadata];
...
wasSet = [inPasteboard setPropertyList:metadatas forType:kIMBPublicMetadataListPasteboardType];
...
}
The text was updated successfully, but these errors were encountered:
Main problem is CFURL which, as I understood, coming from flickerAPI and i think best solution will be to add some sort of converter inside of IMBFlickrNode when we receive any metadata.
I recently found some exception in iMedia during drag of image from flicker.
Error log and exceptions are:
Problem occurs when we are trying to write metadata of object into pastboard at IMBObjectViewController.m
(NSUInteger) writeItemsAtIndexes:(NSIndexSet_)inIndexes toPasteboard:(NSPasteboard_)inPasteboard function
{
...
// Keep all 3 items in sync, so the arrays are of the same length.
[fileTypes addObject:type];
[titles addObject:object.name];
[metadatas addObject:object.metadata];
...
wasSet = [inPasteboard setPropertyList:metadatas forType:kIMBPublicMetadataListPasteboardType];
...
}
The text was updated successfully, but these errors were encountered: