mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2025-04-29 08:20:30 +05:30
Fix type mismatch error.
This commit is contained in:
parent
8aefd7023d
commit
37b2fca2fd
@ -164,14 +164,15 @@ public class VideoHelpers {
|
|||||||
"(:uploader_id,:duration,:is_short,:thumbnail,:title,:uploaded,:views,:id) ON CONFLICT (id) DO UPDATE SET " +
|
"(:uploader_id,:duration,:is_short,:thumbnail,:title,:uploaded,:views,:id) ON CONFLICT (id) DO UPDATE SET " +
|
||||||
"duration = excluded.duration, title = excluded.title, views = excluded.views"
|
"duration = excluded.duration, title = excluded.title, views = excluded.views"
|
||||||
)
|
)
|
||||||
.setParameter("uploader_id", video.getChannel())
|
.setParameter("uploader_id", video.getChannel().getUploaderId())
|
||||||
.setParameter("duration", video.getDuration())
|
.setParameter("duration", video.getDuration())
|
||||||
.setParameter("is_short", video.isShort())
|
.setParameter("is_short", video.isShort())
|
||||||
.setParameter("thumbnail", video.getThumbnail())
|
.setParameter("thumbnail", video.getThumbnail())
|
||||||
.setParameter("title", video.getTitle())
|
.setParameter("title", video.getTitle())
|
||||||
.setParameter("uploaded", video.getUploaded())
|
.setParameter("uploaded", video.getUploaded())
|
||||||
.setParameter("views", video.getViews())
|
.setParameter("views", video.getViews())
|
||||||
.setParameter("id", video.getId()).executeUpdate();
|
.setParameter("id", video.getId())
|
||||||
|
.executeUpdate();
|
||||||
tr.commit();
|
tr.commit();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
tr.rollback();
|
tr.rollback();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user