Issue Summary
I am writing to you in regards of our iOS application and your SDK which we've integrated into.
The problem is that sometimes some of the videos we upload through the iOS app appear as 'Untitled' and in Public visibility even though we have set another title and given a Private visibility mode.
Do you know why this might have happened? It has happened to a few videos.
Here is what we do to set the title prior the upload:
NSString *videoTitle = [NSString stringWithFormat:@"%@ - %@ - 英会話NOWの先生 - %@",
userData.shortName,
sepDate[0],
sepDate[1]
];
VideoSettings *vidSettings = [[[VideoSettings alloc] initWithTitle:videoTitle
description:nil
privacy:@"unlisted" users:nil password:nil] autorelease];
Thank you!