feat: Add 2, update 6 and remove 1 files
All checks were successful
Build-Test-Publish / build (linux/amd64) (push) Successful in 48s
Build-Test-Publish / build (linux/arm64) (push) Successful in 2m8s

This commit is contained in:
Your Name
2025-09-02 18:46:53 +12:00
parent 6528d12df9
commit 344c0307c9
9 changed files with 446 additions and 7476 deletions

View File

@@ -146,10 +146,8 @@ namespace dropshell
else if (tinfo.is_set())
{
std::string template_hash_str = it->second;
uint64_t service_template_hash = 0;
if (!template_hash_str.empty())
service_template_hash = std::stoull(template_hash_str);
service.service_template_hash_match = (service_template_hash == tinfo.hash());
// Compare hash strings directly (migration from uint64_t to SHA256 string)
service.service_template_hash_match = (template_hash_str == tinfo.hash());
//debug << "Service template hash: " << service_template_hash << " == " << tinfo.hash() << std::endl;
}
else