summaryrefslogtreecommitdiff
path: root/Juick
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-02-12 22:54:24 +0300
committerGravatar Vitaly Takmazov2018-02-12 22:54:24 +0300
commit3e0b7455926477ee5cce1233bf1bf1d6f2bd63f8 (patch)
treef1499c3e0689dc0cc3a54ecfd0afb1f2a391769b /Juick
parent7b48a47e723dcbc9fb3f3177c4797f6b3521cc16 (diff)
1.0.45
Diffstat (limited to 'Juick')
-rw-r--r--Juick/Supporting Files/Juick-Info.plist2
-rw-r--r--Juick/ViewControllers/DiscoverViewController.m2
-rw-r--r--Juick/ViewControllers/MessagesViewController.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/Juick/Supporting Files/Juick-Info.plist b/Juick/Supporting Files/Juick-Info.plist
index 4b8907f..0ef24a1 100644
--- a/Juick/Supporting Files/Juick-Info.plist
+++ b/Juick/Supporting Files/Juick-Info.plist
@@ -21,7 +21,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
- <string>1.0.44</string>
+ <string>1.0.45</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationCategoryType</key>
diff --git a/Juick/ViewControllers/DiscoverViewController.m b/Juick/ViewControllers/DiscoverViewController.m
index b15001c..c027ea7 100644
--- a/Juick/ViewControllers/DiscoverViewController.m
+++ b/Juick/ViewControllers/DiscoverViewController.m
@@ -68,7 +68,7 @@ AppDelegate *appDelegate;
}
ThreadViewController *threadVC = (ThreadViewController *)segue.destinationViewController;
[threadVC setPath:[APIClient threadUrl]];
- [threadVC setParams:[@{@"mid": mid } mutableCopy]];
+ [threadVC setParams:@{@"mid": mid }];
[threadVC refreshData:scrollToEnd];
}
}
diff --git a/Juick/ViewControllers/MessagesViewController.h b/Juick/ViewControllers/MessagesViewController.h
index 548f8ec..9f47b57 100644
--- a/Juick/ViewControllers/MessagesViewController.h
+++ b/Juick/ViewControllers/MessagesViewController.h
@@ -10,7 +10,7 @@
@interface MessagesViewController : UITableViewController
@property(nonatomic, strong) NSString *path;
-@property(nonatomic, strong) NSMutableDictionary *params;
+@property(nonatomic, strong) NSDictionary *params;
-(void) refreshData;
-(void) refreshData:(BOOL)scrollToBottom;