mirror of
https://github.com/MatMoul/quickdial-webext.git
synced 2024-12-23 15:36:12 +00:00
Bug: Updating bookmark url don't refresh tile
This commit is contained in:
parent
a64561835c
commit
17739110ff
@ -409,7 +409,10 @@ app.GridNodes.sync = function(gridNode, rootPath, callback){ // Sync GridNodes w
|
||||
gridNode.title = bookmarkItem.title;
|
||||
if(bookmarkItem.url){
|
||||
gridNode.type = app.GridNodes.GridNodeType.bookmark;
|
||||
gridNode.url = bookmarkItem.url;
|
||||
if(gridNode.url != bookmarkItem.url){
|
||||
gridNode.url = bookmarkItem.url;
|
||||
delete gridNode.image;
|
||||
}
|
||||
} else if(bookmarkItem.children){
|
||||
gridNode.type = app.GridNodes.GridNodeType.folder;
|
||||
var EmptyNodes = [];
|
||||
|
Loading…
Reference in New Issue
Block a user