From 0c7227672ab06aceba848334b58e593f21d2d988 Mon Sep 17 00:00:00 2001 From: Victor Lourme Date: Sun, 21 Apr 2024 17:20:04 +0200 Subject: [PATCH] fix: building --- src/Features/Feed/HideFeedPost.x | 2 +- src/InstagramHeaders.h | 3 --- src/Manager.h | 1 - 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/Features/Feed/HideFeedPost.x b/src/Features/Feed/HideFeedPost.x index cb0886e..82e2e91 100644 --- a/src/Features/Feed/HideFeedPost.x +++ b/src/Features/Feed/HideFeedPost.x @@ -4,7 +4,7 @@ // Hide feed post (keep the first elements: stories bar) %hook IGMainFeedListAdapterDataSource - (NSArray *)objectsForListAdapter:(id)arg1 { - if ([BHIManager removeFeedPost]) { + if ([SCIManager removeFeedPost]) { NSMutableArray *objects = [%orig mutableCopy]; if (objects.count > 1) { diff --git a/src/InstagramHeaders.h b/src/InstagramHeaders.h index ba185a0..f240d80 100644 --- a/src/InstagramHeaders.h +++ b/src/InstagramHeaders.h @@ -39,9 +39,6 @@ @interface IGTabBar: UIView @end -@interface IGTabBar: UIView -@end - @interface IGTableViewCell: UITableViewCell - (id)initWithReuseIdentifier:(NSString *)identifier; @end diff --git a/src/Manager.h b/src/Manager.h index bcb7d90..7635487 100644 --- a/src/Manager.h +++ b/src/Manager.h @@ -12,7 +12,6 @@ + (BOOL)removeSuggestedReels; + (BOOL)removeSuggestedThreads; + (BOOL)removeFeedPost; -+ (BOOL)showLikeCount; + (BOOL)postLikeConfirmation; + (BOOL)reelsLikeConfirmation; + (BOOL)followConfirmation;