Bug 1416971: Update Pocket MORE link. r=liuche draft
authorMichael Comella <michael.l.comella@gmail.com>
Mon, 27 Nov 2017 11:26:57 -0800
changeset 703788 e053cfc858492c3e0f2fbf5ca11c37dc07160750
parent 703787 cffc92876737b29d95c4711e146418d46375c911
child 741911 1ea2e4b270e679b1b0e2561f9bd27bf80a85286c
push id90972
push usermichael.l.comella@gmail.com
push dateMon, 27 Nov 2017 19:31:47 +0000
reviewersliuche
bugs1416971
milestone59.0a1
Bug 1416971: Update Pocket MORE link. r=liuche Updated URL is specified in comment 1. MozReview-Commit-ID: 3S6vJ4E7jYO
mobile/android/base/java/org/mozilla/gecko/activitystream/homepanel/StreamRecyclerAdapter.java
--- a/mobile/android/base/java/org/mozilla/gecko/activitystream/homepanel/StreamRecyclerAdapter.java
+++ b/mobile/android/base/java/org/mozilla/gecko/activitystream/homepanel/StreamRecyclerAdapter.java
@@ -56,17 +56,17 @@ public class StreamRecyclerAdapter exten
     private Cursor topSitesCursor;
     private List<RowModel> recyclerViewModel; // List of item types backing this RecyclerView.
     private List<TopStory> topStoriesQueue;
 
     // Content sections available on the Activity Stream page. These may be hidden if the sections are disabled.
     private final RowItemType[] ACTIVITY_STREAM_SECTIONS =
             { RowItemType.TOP_PANEL, RowItemType.TOP_STORIES_TITLE, RowItemType.HIGHLIGHTS_TITLE, RowItemType.LEARN_MORE_LINK };
     public static final int MAX_TOP_STORIES = 3;
-    private static final String LINK_MORE_POCKET = "https://getpocket.cdn.mozilla.net/explore/trending?src=ff_android";
+    private static final String LINK_MORE_POCKET = "https://getpocket.com/explore/trending?src=ff_android&cdn=0";
 
     private HomePager.OnUrlOpenListener onUrlOpenListener;
     private HomePager.OnUrlOpenInBackgroundListener onUrlOpenInBackgroundListener;
 
     private int tilesSize;
 
     public enum RowItemType {
         TOP_PANEL (-2), // RecyclerView.NO_ID is -1, so start hard-coded stableIds at -2.