fix: Use correct variable for version number

/puter/packages/backend/src/services/ComplainAboutVersionsService.js
  30:36  error  'current_version' is not defined  no-undef
This commit is contained in:
Sam Atkins 2024-05-02 17:30:53 +01:00
parent 23d959bf64
commit 52d5299374

View File

@ -27,7 +27,7 @@ class ComplainAboutVersionsService extends BaseService {
if ( ! current_version_data ) {
this.log.warn(
`failed to check ${current_version} in the EOL database`
`failed to check ${major} in the EOL database`
);
return;
}