From 2604b0824f769b7179679816252b7d24a4fbb555 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk <7253922+freearhey@users.noreply.github.com> Date: Sat, 11 Apr 2026 23:52:59 +0300 Subject: [PATCH] Update scripts/commands/playlist/edit.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- scripts/commands/playlist/edit.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/commands/playlist/edit.ts b/scripts/commands/playlist/edit.ts index b45c6a82c3..cf1a57a64b 100644 --- a/scripts/commands/playlist/edit.ts +++ b/scripts/commands/playlist/edit.ts @@ -9,7 +9,7 @@ import * as sdk from '@iptv-org/sdk' import { truncate } from '../../utils' import { Command } from 'commander' import readline from 'readline' -import path from 'path' +import path from 'node:path' type ChoiceValue = { type: string; value?: sdk.Models.Feed | sdk.Models.Channel } type Choice = { name: string; short?: string; value: ChoiceValue; default?: boolean }