Skip to content

Commit

Permalink
fix(CustomLocalTimeline): set WebUri with scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
FineFindus committed May 12, 2024
1 parent daaf467 commit d4b8c35
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 d4b8c35

Please sign in to comment.