Skip to content

Commit ce90110

Browse files
committed
bug fix
1 parent fe79cb0 commit ce90110

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

WalkmanManager.sln.DotSettings.user

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<s:Boolean x:Key="/Default/Environment/InjectedLayers/InjectedLayerCustomization/=FileC65318E83F72A444B7E9CD6C3C6925F3/@KeyIndexDefined">True</s:Boolean>
2323
<s:Double x:Key="/Default/Environment/InjectedLayers/InjectedLayerCustomization/=FileC65318E83F72A444B7E9CD6C3C6925F3/RelativePriority/@EntryValue">1</s:Double>
2424
<s:Boolean x:Key="/Default/Housekeeping/Bookmarks/NumberedBookmarks/=34580ef4_002Dafc6_002D4f67_002Dab6a_002D9fa7ae88fe22/@KeyIndexDefined">True</s:Boolean>
25-
<s:String x:Key="/Default/Housekeeping/Bookmarks/NumberedBookmarks/=34580ef4_002Dafc6_002D4f67_002Dab6a_002D9fa7ae88fe22/Coords/@EntryValue">(Doc Ln 71 Col 26)</s:String>
25+
<s:String x:Key="/Default/Housekeeping/Bookmarks/NumberedBookmarks/=34580ef4_002Dafc6_002D4f67_002Dab6a_002D9fa7ae88fe22/Coords/@EntryValue">(Doc Ln 71 Col 8)</s:String>
2626
<s:String x:Key="/Default/Housekeeping/Bookmarks/NumberedBookmarks/=34580ef4_002Dafc6_002D4f67_002Dab6a_002D9fa7ae88fe22/FileId/@EntryValue">918DC2FB-7054-47E2-B4AF-9B36843023F0/f:MainWindow.xaml</s:String>
2727
<s:String x:Key="/Default/Housekeeping/Bookmarks/NumberedBookmarks/=34580ef4_002Dafc6_002D4f67_002Dab6a_002D9fa7ae88fe22/Owner/@EntryValue">AnonymousBookmarkManager</s:String>
2828
<s:Boolean x:Key="/Default/Housekeeping/Bookmarks/NumberedBookmarks/=e2a02703_002D5bd5_002D48a3_002Dba9c_002D8adee776f074/@KeyIndexDefined">True</s:Boolean>

WalkmanManager/Dialogs/DlgConvertNcm.xaml.vb

+4-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@
5757
For Each itm As NcmItem In StackPanelFiles.Children
5858
Await itm.Dump(SongLibPath)
5959
itm.Dispose()
60-
My.Computer.FileSystem.DeleteFile(itm._filePath)
60+
Try
61+
My.Computer.FileSystem.DeleteFile(itm._filePath)
62+
Catch ex As Exception
63+
End Try
6164
Next
6265
End Sub
6366
End Class

0 commit comments

Comments
 (0)