mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
Fixed images not being proxied.
This commit is contained in:
parent
9527ad4133
commit
a395115f18
1 changed files with 2 additions and 2 deletions
|
@ -147,8 +147,8 @@ public class ResponseHelper {
|
||||||
|
|
||||||
String nextpage = info.hasNextPage() ? info.getNextPage().getUrl() : null;
|
String nextpage = info.hasNextPage() ? info.getNextPage().getUrl() : null;
|
||||||
|
|
||||||
final Channel channel = new Channel(info.getName(), info.getAvatarUrl(), info.getBannerUrl(),
|
final Channel channel = new Channel(info.getName(), rewriteURL(info.getAvatarUrl()),
|
||||||
info.getDescription(), nextpage, relatedStreams);
|
rewriteURL(info.getBannerUrl()), info.getDescription(), nextpage, relatedStreams);
|
||||||
|
|
||||||
return Constants.mapper.writeValueAsString(channel);
|
return Constants.mapper.writeValueAsString(channel);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue