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
{{ message }}
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.
@objc func didTapUpload(_ sender: UIBarButtonItem)
{
let title = self.titleTextField.text
let description = self.descriptionTextView.text
self.videoSettings = VideoSettings(title: title, description: description, privacy: "Nobody", users: nil, password: nil)
if self.operation?.state == .executing
{
self.operation?.videoSettings = self.videoSettings
self.activityIndicatorView.startAnimating() // Listen for operation completion, dismiss
}
else if let error = self.operation?.error
{
self.presentOperationErrorAlert(with: error)
}
else
{
if let video = self.video, let viewPrivacy = video.privacy?.view, viewPrivacy != VideoSettingsViewController.PreUploadViewPrivacy
{
NotificationCenter.default.post(name: Notification.Name(rawValue: type(of: self).UploadInitiatedNotification), object: video)
self.dismiss(animated: true, completion: nil)
}
else
{
self.activityIndicatorView.startAnimating()
self.applyVideoSettings()
}
}
}
This is my upload function here i set privacy to "Nobody","Anybody","VIMPrivacy_Private" Nothing works for me could anyone help me to get this out !!!!
The text was updated successfully, but these errors were encountered:
Hi @gowthamidss have you tried a lowercase nobody? If that doesn't work, can you please add more info to this issue so we can see what error you are actually getting?
This is my upload function here i set privacy to "Nobody","Anybody","VIMPrivacy_Private" Nothing works for me could anyone help me to get this out !!!!
The text was updated successfully, but these errors were encountered: