diff options
author | Vitaly Takmazov | 2017-12-22 00:56:56 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-12-22 00:56:56 +0300 |
commit | ba0f1acba2f9a582051d58c00c04e3606cf7347a (patch) | |
tree | 107a1c61dcf3051b82d893095e122976a0c4aa84 | |
parent | f7f8db8f83c63498fca1fb3a8037fbee7b3397e6 (diff) |
test fix
-rw-r--r-- | Juick/Supporting Files/Juick-Info.plist | 2 | ||||
-rw-r--r-- | Juick/ViewControllers/DiscoverViewController.m | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Juick/Supporting Files/Juick-Info.plist b/Juick/Supporting Files/Juick-Info.plist index 011cb90..06427c7 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.41</string> + <string>1.0.42</string> <key>ITSAppUsesNonExemptEncryption</key> <false/> <key>LSApplicationCategoryType</key> diff --git a/Juick/ViewControllers/DiscoverViewController.m b/Juick/ViewControllers/DiscoverViewController.m index 26ec710..942ccc7 100644 --- a/Juick/ViewControllers/DiscoverViewController.m +++ b/Juick/ViewControllers/DiscoverViewController.m @@ -60,7 +60,7 @@ AppDelegate *appDelegate; NSNumber *mid; BOOL scrollToEnd = NO; if (appDelegate.pushedThread != nil) { - mid = appDelegate.pushedThread; + mid = [appDelegate.pushedThread copy]; appDelegate.pushedThread = nil; scrollToEnd = YES; } else { |