Skip to content

Commit

Permalink
Merge pull request #404 from FineFindus/fix/custom-timeline-recents
Browse files Browse the repository at this point in the history
fix(CustomLocalTimeline): set WebUri with scheme
  • Loading branch information
LucasGGamerM authored May 12, 2024
2 parents daaf467 + d4b8c35 commit e52154f
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,10 @@ protected FilterContext getFilterContext() {

@Override
public Uri getWebUri(Uri.Builder base) {
return Uri.parse(domain);
return new Uri.Builder()
.scheme("https")
.authority(domain)
.build();
}

@Override
Expand Down

0 comments on commit e52154f

Please sign in to comment.