mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
Rename field to fix consistency issues.
This commit is contained in:
parent
b2c9ffa789
commit
1524085577
1 changed files with 3 additions and 3 deletions
|
@ -2,18 +2,18 @@ package me.kavin.piped.utils.obj;
|
|||
|
||||
public class StreamItem {
|
||||
|
||||
public String url, title, thumbnail, uploaderName, uploaderUrl, uploaderAvatarUrl, uploadedDate;
|
||||
public String url, title, thumbnail, uploaderName, uploaderUrl, uploaderAvatar, uploadedDate;
|
||||
public long duration, views;
|
||||
public boolean uploaderVerified;
|
||||
|
||||
public StreamItem(String url, String title, String thumbnail, String uploaderName, String uploaderUrl,
|
||||
String uploaderAvatarUrl, String uploadedDate, long duration, long views, boolean uploaderVerified) {
|
||||
String uploaderAvatar, String uploadedDate, long duration, long views, boolean uploaderVerified) {
|
||||
this.url = url;
|
||||
this.title = title;
|
||||
this.thumbnail = thumbnail;
|
||||
this.uploaderName = uploaderName;
|
||||
this.uploaderUrl = uploaderUrl;
|
||||
this.uploaderAvatarUrl = uploaderAvatarUrl;
|
||||
this.uploaderAvatar = uploaderAvatar;
|
||||
this.uploadedDate = uploadedDate;
|
||||
this.duration = duration;
|
||||
this.views = views;
|
||||
|
|
Loading…
Reference in a new issue