File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -522,7 +522,10 @@ export class GamesService {
522522 if ( foundGame . title != game . title ) {
523523 differences . push ( `title: ${ foundGame . title } -> ${ game . title } ` ) ;
524524 }
525- if ( ( matchedVersion ?. early_access ?? foundGame . early_access ) != game . early_access ) {
525+ if (
526+ ( matchedVersion ?. early_access ?? foundGame . early_access ) !=
527+ game . early_access
528+ ) {
526529 differences . push (
527530 `early_access: ${ matchedVersion ?. early_access ?? foundGame . early_access } -> ${ game . early_access } ` ,
528531 ) ;
@@ -542,7 +545,10 @@ export class GamesService {
542545 `release_year: ${ this . getReleaseYear ( matchedVersion ?. release_date ?? foundGame . release_date ) || "none" } -> ${ this . getReleaseYear ( game . release_date ) || "none" } ` ,
543546 ) ;
544547 }
545- if ( ( matchedVersion ?. size ?? foundGame . size ) . toString ( ) != game . size . toString ( ) ) {
548+ if (
549+ ( matchedVersion ?. size ?? foundGame . size ) . toString ( ) !=
550+ game . size . toString ( )
551+ ) {
546552 differences . push (
547553 `size: ${ ( matchedVersion ?. size ?? foundGame . size ) . toString ( ) } -> ${ game . size } ` ,
548554 ) ;
You can’t perform that action at this time.
0 commit comments