mirror of
https://github.com/faroukbmiled/RyukGram.git
synced 2026-07-25 13:40:53 +02:00
26 lines
543 B
Plaintext
26 lines
543 B
Plaintext
%hook IGSundialFeedViewController
|
|
- (_Bool)_isHomecomingEnabled {
|
|
return true;
|
|
}
|
|
- (_Bool)_isHomeComingHomeFeed {
|
|
return true;
|
|
}
|
|
%end
|
|
|
|
%hook IGSundialViewerManagedRequestItem
|
|
- (id)initWithMedia:(id)media launcherSet:(id)set isHomecomingEnabled:(_Bool)enabled {
|
|
return %orig(media, set, true);
|
|
}
|
|
%end
|
|
|
|
%hook IGTabBarViewControllerManager
|
|
- (_Bool)_isHomecomingEnabled {
|
|
return true;
|
|
}
|
|
%end
|
|
|
|
%hook IGMainAppSurfaceIntent
|
|
+ (id)resolvedHomeAppSurfaceIntentWithIsHomecomingEnabled:(_Bool)enabled {
|
|
return %orig(true);
|
|
}
|
|
%end |