File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -337,9 +337,9 @@ aws.initConfig(awsProps)
337
337
. then ( result => {
338
338
const config = JSON . parse ( result . config ) ;
339
339
const metadata = {
340
- ogDescription : result . special_metadata ? result . special_metadata . description . S : null ,
341
- ogAuthor : result . special_metadata ? result . special_metadata . author . S : null ,
342
- ogTitle : result . special_metadata ? result . special_metadata . title . S : "Compiler Explorer"
340
+ ogDescription : result . specialMetadata ? result . specialMetadata . description . S : null ,
341
+ ogAuthor : result . specialMetadata ? result . specialMetadata . author . S : null ,
342
+ ogTitle : result . specialMetadata ? result . specialMetadata . title . S : "Compiler Explorer"
343
343
} ;
344
344
if ( ! metadata . ogDescription ) {
345
345
if ( result . metadata && result . metadata . single_code && result . metadata . single_code . M ) {
Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ class StorageS3 extends StorageBase {
199
199
if ( result . hit ) {
200
200
return {
201
201
config : result . data . toString ( ) ,
202
- special_metadata : special_metadata ,
202
+ specialMetadata : special_metadata ,
203
203
metadata : metadata
204
204
} ;
205
205
} else {
You can’t perform that action at this time.
0 commit comments