mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
Minor formatting changes.
This commit is contained in:
parent
adacbfe285
commit
30806effc9
1 changed files with 3 additions and 3 deletions
|
@ -65,9 +65,9 @@ public class CollectionUtils {
|
||||||
final List<ContentItem> relatedStreams = collectRelatedItems(info.getRelatedItems());
|
final List<ContentItem> relatedStreams = collectRelatedItems(info.getRelatedItems());
|
||||||
|
|
||||||
final List<MetaInfo> metaInfo = new ObjectArrayList<>();
|
final List<MetaInfo> metaInfo = new ObjectArrayList<>();
|
||||||
info.getMetaInfo().forEach(metaInfoItem -> {
|
info.getMetaInfo().forEach(metaInfoItem -> metaInfo.add(new MetaInfo(metaInfoItem.getTitle(), metaInfoItem.getContent().getContent(),
|
||||||
metaInfo.add(new MetaInfo(metaInfoItem.getTitle(), metaInfoItem.getContent().getContent(), metaInfoItem.getUrls(), metaInfoItem.getUrlTexts()));
|
metaInfoItem.getUrls(), metaInfoItem.getUrlTexts()
|
||||||
});
|
)));
|
||||||
|
|
||||||
return new Streams(info.getName(), info.getDescription().getContent(),
|
return new Streams(info.getName(), info.getDescription().getContent(),
|
||||||
info.getTextualUploadDate(), info.getUploaderName(), substringYouTube(info.getUploaderUrl()),
|
info.getTextualUploadDate(), info.getUploaderName(), substringYouTube(info.getUploaderUrl()),
|
||||||
|
|
Loading…
Reference in a new issue