Merge pull request #1229 from raniapl/stamatiap/fixissue1075
fix highlight title - issue #1075
This commit is contained in:
commit
1e2cf4f3a9
@ -119,6 +119,7 @@ public class StoryViewerFragment extends Fragment {
|
||||
private View root;
|
||||
private FragmentStoryViewerBinding binding;
|
||||
private String currentStoryUsername;
|
||||
private String highlightTitle;
|
||||
private StoriesAdapter storiesAdapter;
|
||||
private SwipeEvent swipeEvent;
|
||||
private GestureDetectorCompat gestureDetector;
|
||||
@ -724,7 +725,7 @@ public class StoryViewerFragment extends Fragment {
|
||||
final HighlightModel model = models.get(currentFeedStoryIndex);
|
||||
currentStoryMediaId = model.getId();
|
||||
fetchOptions = StoryViewerOptions.forHighlight(model.getId());
|
||||
currentStoryUsername = model.getTitle();
|
||||
highlightTitle = model.getTitle();
|
||||
break;
|
||||
}
|
||||
case FEED_STORY_POSITION: {
|
||||
@ -824,8 +825,8 @@ public class StoryViewerFragment extends Fragment {
|
||||
if (type == Type.HIGHLIGHT) {
|
||||
final ActionBar actionBar = fragmentActivity.getSupportActionBar();
|
||||
if (actionBar != null) {
|
||||
actionBarTitle = options.getName();
|
||||
actionBar.setTitle(options.getName());
|
||||
actionBarTitle = highlightTitle;
|
||||
actionBar.setTitle(highlightTitle);
|
||||
}
|
||||
} else if (hasUsername) {
|
||||
currentStoryUsername = currentStoryUsername.replace("@", "");
|
||||
|
Loading…
Reference in New Issue
Block a user