fix(TikTok - Feed filter): Hide ads in following feed (#4844)

This commit is contained in:
Jaimy Smets
2025-04-26 15:49:28 +02:00
committed by GitHub
parent f925479a93
commit c255ac18e0
5 changed files with 71 additions and 19 deletions

View File

@ -0,0 +1,8 @@
package com.ss.android.ugc.aweme.follow.presenter;
import com.ss.android.ugc.aweme.feed.model.Aweme;
//Dummy class
public class FollowFeed {
public Aweme aweme;
}

View File

@ -0,0 +1,8 @@
package com.ss.android.ugc.aweme.follow.presenter;
import java.util.List;
//Dummy class
public class FollowFeedList {
public List<FollowFeed> mItems;
}