Fix MetadataDecode name and fix compiler error with ci
This commit is contained in:
@@ -118,7 +118,7 @@ namespace Tesses::CrossLang
|
||||
throw VMException(errorMessage);
|
||||
}
|
||||
|
||||
TDictionary* TFile::DecodeMetadata(GCList& ls, size_t midx)
|
||||
TDictionary* TFile::MetadataDecode(GCList& ls, size_t midx)
|
||||
{
|
||||
if(midx >= this->metadata.size()) return nullptr;
|
||||
if(this->metadata[midx].second.empty()) return nullptr;
|
||||
|
||||
@@ -4337,7 +4337,7 @@ namespace Tesses::CrossLang {
|
||||
int64_t index;
|
||||
if(GetArgument(args,0, index) && (size_t)index < file->metadata.size())
|
||||
{
|
||||
cse.back()->Push(gc,file->DecodeMetadata(ls,(size_t)index));
|
||||
cse.back()->Push(gc,file->MetadataDecode(ls,(size_t)index));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user