diff --git a/tweak/Apollo.xm b/tweak/Apollo.xm index 2568e96..b2ef439 100644 --- a/tweak/Apollo.xm +++ b/tweak/Apollo.xm @@ -74,7 +74,19 @@ id apolloCommentController; UIImageView *prevCellImageView = MSHookIvar(prevCell, "iconImageView"); CGSize prevImageSize = [[prevCellImageView image] size]; - UIImage *undeleteImage = [UIImage imageWithContentsOfFile:@"/var/mobile/Library/Application Support/TFDidThatSay/eye160dark.png"]; + UIImage *undeleteImage; + + if (@available(iOS 13.0, *)){ + + undeleteImage = [UIImage systemImageNamed:@"eye"]; + + if (!undeleteImage){ + undeleteImage = [UIImage imageWithContentsOfFile:@"/var/mobile/Library/Application Support/TFDidThatSay/eye160dark.png"]; + } + } else { + undeleteImage = [UIImage imageWithContentsOfFile:@"/var/mobile/Library/Application Support/TFDidThatSay/eye160dark.png"]; + } + CGFloat undeleteImageSizeValue = prevImageSize.width > prevImageSize.height ? prevImageSize.width : prevImageSize.height; if (undeleteImageSizeValue == 0){