Add timestamp checking to YouTube feeds

This commit is contained in:
2026-06-27 01:26:31 -05:00
parent 45a8b010fc
commit 594c71b37e
5 changed files with 88 additions and 33 deletions

View File

@@ -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;
}