From 9327885393f022fd1cccb219a19c0f87ae5e0f5a Mon Sep 17 00:00:00 2001 From: Anatoliy Kashkin Date: Wed, 25 May 2022 02:24:40 +0300 Subject: [PATCH] Fix building with newer Vala compiler (#637) --- src/data/providers/images/SteamGridDB.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/providers/images/SteamGridDB.vala b/src/data/providers/images/SteamGridDB.vala index fffd7a0f..d37bab7a 100644 --- a/src/data/providers/images/SteamGridDB.vala +++ b/src/data/providers/images/SteamGridDB.vala @@ -194,7 +194,7 @@ namespace GameHub.Data.Providers.Images public class Image: ImagesProvider.Image { public string raw_style { get; protected construct set; } - public Style? style { get; protected construct set; default = null; } + public Style? style { get; protected set; default = null; } public int score { get; protected construct set; default = 0; } public string? author { get; protected construct set; default = null; }