Make sure the href is updated everywhere when importing a stronger link

pull/1/head
yflory 8 years ago
parent b701e3cc85
commit 0c1efd361b

@ -158,6 +158,15 @@ define([
// NOTE: if that weaker version is in the trash, the strong one will be put in unsorted // NOTE: if that weaker version is in the trash, the strong one will be put in unsorted
var weaker = Cryptpad.findWeaker(href, newRecentPads); var weaker = Cryptpad.findWeaker(href, newRecentPads);
if (weaker) { if (weaker) {
// Update RECENTPADS
newRecentPads.some(function (pad) {
if (pad.href === weaker) {
pad.href = href;
return true;
}
return;
});
// Update the file in the drive
newFo.replaceHref(weaker, href); newFo.replaceHref(weaker, href);
return; return;
} }

Loading…
Cancel
Save