File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Plugins/Flow.Launcher.Plugin.BrowserBookmark Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public List<Bookmark> GetBookmarks()
1818 return bookmarks ;
1919 }
2020
21- private void ParseEdgeBookmarks ( String path , string source )
21+ private void ParseEdgeBookmarks ( string path , string source )
2222 {
2323 if ( ! File . Exists ( path ) ) return ;
2424
@@ -72,12 +72,13 @@ private void LoadEdgeBookmarks(string path, string name)
7272
7373 private void LoadEdgeBookmarks ( )
7474 {
75- String platformPath = Environment . GetFolderPath ( Environment . SpecialFolder . LocalApplicationData ) ;
75+ string platformPath = Environment . GetFolderPath ( Environment . SpecialFolder . LocalApplicationData ) ;
7676 LoadEdgeBookmarks ( Path . Combine ( platformPath , @"Microsoft\Edge\User Data" ) , "Microsoft Edge" ) ;
77+ LoadEdgeBookmarks ( Path . Combine ( platformPath , @"Microsoft\Edge Dev\User Data" ) , "Microsoft Edge Dev" ) ;
7778 LoadEdgeBookmarks ( Path . Combine ( platformPath , @"Microsoft\Edge SxS\User Data" ) , "Microsoft Edge Canary" ) ;
7879 }
7980
80- private String DecodeUnicode ( String dataStr )
81+ private string DecodeUnicode ( string dataStr )
8182 {
8283 Regex reg = new Regex ( @"(?i)\\[uU]([0-9a-f]{4})" ) ;
8384 return reg . Replace ( dataStr , m => ( ( char ) Convert . ToInt32 ( m . Groups [ 1 ] . Value , 16 ) ) . ToString ( ) ) ;
You can’t perform that action at this time.
0 commit comments