fix
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
JMARyA 2024-12-14 05:13:55 +01:00
parent 05fe40b70d
commit 8bb0fb8fcb
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ pub struct YouTubeMeta {
pub description: String,
pub uploader_name: String,
pub uploader_id: String,
pub views: i64,
pub views: i32,
pub upload_date: chrono::NaiveDate,
}

View file

@ -99,7 +99,7 @@ pub fn format_date(date: &chrono::NaiveDate) -> String {
date.to_string()
}
pub fn format_number(num: i64) -> String {
pub fn format_number(num: i32) -> String {
// TODO : Implement
num.to_string()
}