Language filter alert

This commit is contained in:
Chris Li 2017-02-01 16:07:59 -05:00
parent 5682ecf3cb
commit ac0efc556b

View File

@ -132,12 +132,8 @@ class LibraryBooksController: CoreDataCollectionBaseController, UICollectionView
if let error = errors.first { if let error = errors.first {
UIQueue.shared.add(operation: AlertProcedure.Library.refreshError(context: self, message: error.localizedDescription)) UIQueue.shared.add(operation: AlertProcedure.Library.refreshError(context: self, message: error.localizedDescription))
} else { } else {
UIQueue.shared.add(operation: AlertProcedure.Library.languageFilter(context: self))
if operation.firstTime { if operation.firstTime {
//self.showLanguageFilterAlert() UIQueue.shared.add(operation: AlertProcedure.Library.languageFilter(context: self))
//self.configureNavBarButtons()
} else {
// self.showRefreshSuccessMessage()
} }
} }
}) })