diff options
| author | dakkar <dakkar@thenautilus.net> | 2024-11-26 11:14:51 +0000 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2024-11-29 11:39:18 +0000 |
| commit | f0139ae1e08b65354ab34fa4d422c41844bf2fdb (patch) | |
| tree | a9715634fd57f9f7ae52830ae60b338c014084d0 /packages/backend/src/core/UtilityService.ts | |
| parent | spaces / lint (diff) | |
| download | sharkey-f0139ae1e08b65354ab34fa4d422c41844bf2fdb.tar.gz sharkey-f0139ae1e08b65354ab34fa4d422c41844bf2fdb.tar.bz2 sharkey-f0139ae1e08b65354ab34fa4d422c41844bf2fdb.zip | |
actually use the correct `import` syntax
CenTdemeern1 had told me, but I got it wrong ☹
Diffstat (limited to 'packages/backend/src/core/UtilityService.ts')
| -rw-r--r-- | packages/backend/src/core/UtilityService.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/core/UtilityService.ts b/packages/backend/src/core/UtilityService.ts index fca715164e..fc38c9dac6 100644 --- a/packages/backend/src/core/UtilityService.ts +++ b/packages/backend/src/core/UtilityService.ts @@ -4,7 +4,7 @@ */ import { URL } from 'node:url'; -import punycode from 'punycode/'; +import punycode from 'punycode/punycode.js'; import { Inject, Injectable } from '@nestjs/common'; import RE2 from 're2'; import psl from 'psl'; |