JWT, server modüler hale getirildi, Torrent durumu kalıcı hale getirildi.
This commit is contained in:
@@ -759,6 +759,12 @@
|
||||
return;
|
||||
}
|
||||
|
||||
const sourceLabel = cleanFileName(source.displayName || source.name || normalizedSource);
|
||||
const targetLabel = cleanFileName(target.displayName || target.name || normalizedTarget);
|
||||
if (!confirm(`"${sourceLabel}" öğesini "${targetLabel}" içine taşımak istiyor musun?`)) {
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
const result = await moveEntry(normalizedSource, normalizedTarget);
|
||||
if (!result?.success) {
|
||||
@@ -1588,6 +1594,13 @@
|
||||
return;
|
||||
}
|
||||
|
||||
const sourceLabel = cleanFileName(clipboardItem.displayName || clipboardItem.name || normalizedSource);
|
||||
const targetLabel = cleanFileName(currentPath || normalizedTarget);
|
||||
const actionLabel = clipboardOperation === 'cut' ? 'taşı' : 'kopyala';
|
||||
if (!confirm(`"${sourceLabel}" öğesini "${targetLabel}" konumuna ${actionLabel}mak istiyor musun?`)) {
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
let result;
|
||||
if (clipboardOperation === 'cut') {
|
||||
|
||||
Reference in New Issue
Block a user