fix: add missing L. prefix for un_clip localization string

Fixes ReferenceError when copying links from recently uploaded files.
  The un_clip localization string was missing the L. prefix in up2k.js.

  Fixes #467
This commit is contained in:
geekalaa 2025-08-04 15:46:03 +01:00 committed by ed
parent 8c000fd683
commit 0df1901fc0

View file

@ -1595,7 +1595,7 @@ function up2k_init(subtle) {
ev(e); ev(e);
var txt = linklist(); var txt = linklist();
cliptxt(txt + '\n', function () { cliptxt(txt + '\n', function () {
toast.inf(5, un_clip.format(txt.split('\n').length)); toast.inf(5, L.un_clip.format(txt.split('\n').length));
}); });
}; };