Skip to content

Commit 399058d

Browse files
committed
修复一起看图文文案错位
1 parent f8ddb16 commit 399058d

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

DYYY.xm

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6008,7 +6008,8 @@ static void *DYYYTabBarHeightContext = &DYYYTabBarHeightContext;
60086008
return;
60096009
}
60106010

6011-
UIViewController *parentVC = self.parentViewController;
6011+
UIViewController *directParentVC = self.parentViewController;
6012+
UIViewController *parentVC = directParentVC;
60126013
int maxIterations = 3;
60136014
int count = 0;
60146015

@@ -6038,6 +6039,13 @@ static void *DYYYTabBarHeightContext = &DYYYTabBarHeightContext;
60386039
[currentReferString isEqualToString:@"close_friends_moment"] || [currentReferString isEqualToString:@"offline_mode"] || [currentReferString isEqualToString:@"challenge"] ||
60396040
[currentReferString isEqualToString:@"general_search_scan"] || currentReferString == nil;
60406041

6042+
if (!useFullHeight && [currentReferString isEqualToString:@"co_play_watch"]) {
6043+
Class richContentVCClass = NSClassFromString(@"AWEFriendsImpl.RichContentNewListViewController");
6044+
if (richContentVCClass && [directParentVC isKindOfClass:richContentVCClass]) {
6045+
useFullHeight = YES;
6046+
}
6047+
}
6048+
60416049
if (!useFullHeight && [currentReferString isEqualToString:@"chat"]) {
60426050
static NSNumber *shouldRestoreChat = nil;
60436051
static dispatch_once_t onceToken;

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ include $(THEOS_MAKE_PATH)/tweak.mk
5454
ifeq ($(shell whoami),huami)
5555
THEOS_DEVICE_IP = 192.168.31.222
5656
else
57-
THEOS_DEVICE_IP = 192.168.15.106
57+
THEOS_DEVICE_IP = 192.168.15.105
5858
endif
5959
THEOS_DEVICE_PORT = 22
6060

0 commit comments

Comments
 (0)