Skip to content

Commit

Permalink
use goblin url (#16370)
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-brydon authored and zomars committed Sep 4, 2024
1 parent fa65b4d commit c1fa295
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/api/v2/src/modules/deployments/deployments.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class DeploymentsService {
if (!licenseKey) {
return false;
}
const licenseKeyUrl = this.configService.get("api.licenseKeyUrl") + `?key=${licenseKey}`;
const licenseKeyUrl = this.configService.get("api.licenseKeyUrl") + `/${licenseKey}`;
const cachedData = await this.redisService.redis.get(getLicenseCacheKey(licenseKey));
if (cachedData) {
return (JSON.parse(cachedData) as LicenseCheckResponse)?.valid;
Expand Down

0 comments on commit c1fa295

Please sign in to comment.