diff --git a/WOKA.xcodeproj/project.pbxproj b/WOKA.xcodeproj/project.pbxproj
index b7829c4..210e3c4 100644
--- a/WOKA.xcodeproj/project.pbxproj
+++ b/WOKA.xcodeproj/project.pbxproj
@@ -2375,6 +2375,8 @@
"${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Info.plist",
"$(TARGET_BUILD_DIR)/$(UNLOCALIZED_RESOURCES_FOLDER_PATH)/GoogleService-Info.plist",
"$(TARGET_BUILD_DIR)/$(EXECUTABLE_PATH)",
+ "${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Resources/DWARF/${TARGET_NAME}",
+ "$(SRCROOT)/$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)",
);
outputFileListPaths = (
);
diff --git a/WOKA/Audio Books/AudioBookHomeVM.swift b/WOKA/Audio Books/AudioBookHomeVM.swift
index 39a6880..1758ac8 100644
--- a/WOKA/Audio Books/AudioBookHomeVM.swift
+++ b/WOKA/Audio Books/AudioBookHomeVM.swift
@@ -17,7 +17,6 @@ class AudioBookHomeVM{
var headerData : ListenAudioListingDM.AudioDatum?
-// var indexToLoad = 0
var pageNo = 0
var maxHeaderHeight = 0.0
@@ -37,8 +36,6 @@ class AudioBookHomeVM{
startShimmer()
setupCell()
getShowListing()
- checkAds()
-
}
func checkAds(){
@@ -233,6 +230,8 @@ class AudioBookHomeVM{
}else{
self.vc.loadMoreBtn.isHidden = false
}
+
+ checkAds()
default:
break
}
diff --git a/WOKA/Home/Home.storyboard b/WOKA/Home/Home.storyboard
index 2103533..016c570 100644
--- a/WOKA/Home/Home.storyboard
+++ b/WOKA/Home/Home.storyboard
@@ -1076,7 +1076,7 @@
-
+
@@ -1212,38 +1212,32 @@
-
-
-
-
-
-
+
-
+
-
+
@@ -1268,7 +1262,7 @@
-
+
@@ -1314,7 +1308,7 @@
-
+
@@ -1343,8 +1337,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -1399,7 +1431,7 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
+
+
+
-
+
+
+
@@ -1522,7 +1524,7 @@
-
+
@@ -1628,10 +1630,10 @@
-
+
-
+
diff --git a/WOKA/Theme/Controller/UserNotificationVC.swift b/WOKA/Theme/Controller/UserNotificationVC.swift
index 65ae5c2..9bb884d 100644
--- a/WOKA/Theme/Controller/UserNotificationVC.swift
+++ b/WOKA/Theme/Controller/UserNotificationVC.swift
@@ -23,6 +23,7 @@ class UserNotificationVC: UIViewController {
vm.initView()
navigationController?.navigationBar.setBackgroundImage(UIImage(), for: .default)
navigationController?.navigationBar.shadowImage = UIImage()
+ tableView.indicatorStyle = .white
}
override func viewWillAppear(_ animated: Bool) {
diff --git a/WOKA/WebSeries/ViewModel/WebSeriesSeasonVM.swift b/WOKA/WebSeries/ViewModel/WebSeriesSeasonVM.swift
index 2e47e5b..6371900 100644
--- a/WOKA/WebSeries/ViewModel/WebSeriesSeasonVM.swift
+++ b/WOKA/WebSeries/ViewModel/WebSeriesSeasonVM.swift
@@ -375,6 +375,14 @@ class WebSeriesSeasonVM{
}
Utilities.dismissProgressHUD()
vc.toast(msg: error.localizedDescription , time: 2)
+
+ self.vc.loadMoreActivityIndicator.stopAnimating()
+ self.vc.loadMoreActivityIndicator.hidesWhenStopped = true
+
+ //if its not page 0 then for sure user must be loading next page and got error
+ if pageNo != 0{
+ vc.loadMoreBtn.isHidden = true
+ }
}
}
}