Fixes wrong name AGAIN
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 53s
Automated Main Deploy Action / build-and-deploy-docs (push) Successful in 20s

This commit is contained in:
2025-11-02 08:06:47 -05:00
parent df161f3305
commit b622ece21c

View File

@@ -466,7 +466,7 @@ ExpectedTask<> ScanContext::scanMetadata( DbClientPtr db )
ExpectedTask< void > ScanContext::checkExtension( DbClientPtr db )
{
const auto info_result {
co_await db->execSqlCoro( "SELECT best_extension FROM mime WHERE mime = $1", m_mime_name )
co_await db->execSqlCoro( "SELECT best_extension FROM mime WHERE name = $1", m_mime_name )
};
const auto expected_extension { info_result[ 0 ][ 0 ].as< std::string >() };