Implement uploaded date in search.

This commit is contained in:
FireMasterK 2021-03-30 20:26:33 +05:30
parent 6386a4d133
commit d9a84215d7
No known key found for this signature in database
GPG Key ID: 8DFF5DD33E93DB58
2 changed files with 11 additions and 3 deletions

View File

@ -309,7 +309,8 @@ public class ResponseHelper {
case STREAM:
StreamInfoItem stream = (StreamInfoItem) item;
items.add(new SearchStream(item.getName(), rewriteURL(item.getThumbnailUrl()),
item.getUrl().substring(23), stream.getViewCount(), stream.getDuration()));
item.getUrl().substring(23), stream.getTextualUploadDate(), stream.getViewCount(),
stream.getDuration()));
break;
case CHANNEL:
items.add(new SearchItem(item.getName(), rewriteURL(item.getThumbnailUrl()),
@ -341,7 +342,8 @@ public class ResponseHelper {
case STREAM:
StreamInfoItem stream = (StreamInfoItem) item;
items.add(new SearchStream(item.getName(), rewriteURL(item.getThumbnailUrl()),
item.getUrl().substring(23), stream.getViewCount(), stream.getDuration()));
item.getUrl().substring(23), stream.getTextualUploadDate(), stream.getViewCount(),
stream.getDuration()));
break;
case CHANNEL:
items.add(new SearchItem(item.getName(), rewriteURL(item.getThumbnailUrl()),

View File

@ -2,14 +2,20 @@ package me.kavin.piped.utils.obj.search;
public class SearchStream extends SearchItem {
private String uploadDate;
private long views, duration;
public SearchStream(String name, String thumbnail, String url, long views, long duration) {
public SearchStream(String name, String thumbnail, String url, String uploadDate, long views, long duration) {
super(name, thumbnail, url);
this.uploadDate = uploadDate;
this.views = views;
this.duration = duration;
}
public String getUploadDate() {
return uploadDate;
}
public long getViews() {
return views;
}