Add timestamp checking to YouTube feeds
This commit is contained in:
@@ -13,10 +13,11 @@ public class YTEntry {
|
||||
private String id;
|
||||
private String title;
|
||||
private String author;
|
||||
private String timestamp;
|
||||
private String description;
|
||||
private String thumbnail;
|
||||
|
||||
public YTEntry(String id, String title, String author, String description, String thumbnail) {
|
||||
public YTEntry(String id, String title, String author, String timestamp, String description, String thumbnail) {
|
||||
this.id = id;
|
||||
this.title = title;
|
||||
this.author = author;
|
||||
@@ -36,6 +37,10 @@ public class YTEntry {
|
||||
return author;
|
||||
}
|
||||
|
||||
public String getTimestamp() {
|
||||
return timestamp;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user