File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -138,19 +138,19 @@ pub async fn get_game_metadata(
138138 out. push_str ( & format ! ( "Size: `{:.2} MB`" , size as f64 / 1024.0 / 1024.0 ) ) ;
139139 }
140140 if let Some ( serial) = & file. serial {
141- out. push_str ( & format ! ( "\n Serial: `{}`" , serial ) ) ;
141+ out. push_str ( & format ! ( "\n Serial: `{serial }`" ) ) ;
142142 }
143143 if let Some ( crc) = & file. crc {
144- out. push_str ( & format ! ( "\n CRC32: `{}`" , crc ) ) ;
144+ out. push_str ( & format ! ( "\n CRC32: `{crc }`" ) ) ;
145145 }
146146 if let Some ( md5) = & file. md5 {
147- out. push_str ( & format ! ( "\n MD5: `{}`" , md5 ) ) ;
147+ out. push_str ( & format ! ( "\n MD5: `{md5 }`" ) ) ;
148148 }
149149 if let Some ( sha1) = & file. sha1 {
150- out. push_str ( & format ! ( "\n SHA1: `{}`" , sha1 ) ) ;
150+ out. push_str ( & format ! ( "\n SHA1: `{sha1 }`" ) ) ;
151151 }
152152 if let Some ( sha256) = & file. sha256 {
153- out. push_str ( & format ! ( "\n SHA256: `{}`" , sha256 ) ) ;
153+ out. push_str ( & format ! ( "\n SHA256: `{sha256 }`" ) ) ;
154154 }
155155 out
156156 } )
You can’t perform that action at this time.
0 commit comments