You've already forked AstralRinth
forked from didirus/AstralRinth
fixed gallery mislabeled field (#783)
This commit is contained in:
@@ -340,7 +340,7 @@ impl From<Version> for LegacyVersion {
|
|||||||
pub struct LegacyGalleryItem {
|
pub struct LegacyGalleryItem {
|
||||||
pub url: String,
|
pub url: String,
|
||||||
pub featured: bool,
|
pub featured: bool,
|
||||||
pub name: Option<String>,
|
pub title: Option<String>,
|
||||||
pub description: Option<String>,
|
pub description: Option<String>,
|
||||||
pub created: DateTime<Utc>,
|
pub created: DateTime<Utc>,
|
||||||
pub ordering: i64,
|
pub ordering: i64,
|
||||||
@@ -351,7 +351,7 @@ impl LegacyGalleryItem {
|
|||||||
Self {
|
Self {
|
||||||
url: data.url,
|
url: data.url,
|
||||||
featured: data.featured,
|
featured: data.featured,
|
||||||
name: data.name,
|
title: data.name,
|
||||||
description: data.description,
|
description: data.description,
|
||||||
created: data.created,
|
created: data.created,
|
||||||
ordering: data.ordering,
|
ordering: data.ordering,
|
||||||
|
|||||||
Reference in New Issue
Block a user