@@ -539,7 +539,7 @@ public ContextMenu CreateContextMenuForUnstagedChanges()
539
539
var storageFile = await storageProvider . SaveFilePickerAsync ( options ) ;
540
540
if ( storageFile != null )
541
541
{
542
- var succ = await Task . Run ( ( ) => Commands . SaveChangesAsPatch . Exec ( _repo . FullPath , _selectedUnstaged , true , storageFile . Path . LocalPath ) ) ;
542
+ var succ = await Task . Run ( ( ) => Commands . SaveChangesAsPatch . ProcessLocalChanges ( _repo . FullPath , _selectedUnstaged , true , storageFile . Path . LocalPath ) ) ;
543
543
if ( succ )
544
544
App . SendNotification ( _repo . FullPath , App . Text ( "SaveAsPatchSuccess" ) ) ;
545
545
}
@@ -858,7 +858,7 @@ public ContextMenu CreateContextMenuForUnstagedChanges()
858
858
var storageFile = await storageProvider . SaveFilePickerAsync ( options ) ;
859
859
if ( storageFile != null )
860
860
{
861
- var succ = await Task . Run ( ( ) => Commands . SaveChangesAsPatch . Exec ( _repo . FullPath , _selectedUnstaged , true , storageFile . Path . LocalPath ) ) ;
861
+ var succ = await Task . Run ( ( ) => Commands . SaveChangesAsPatch . ProcessLocalChanges ( _repo . FullPath , _selectedUnstaged , true , storageFile . Path . LocalPath ) ) ;
862
862
if ( succ )
863
863
App . SendNotification ( _repo . FullPath , App . Text ( "SaveAsPatchSuccess" ) ) ;
864
864
}
@@ -981,7 +981,7 @@ public ContextMenu CreateContextMenuForStagedChanges()
981
981
var storageFile = await storageProvider . SaveFilePickerAsync ( options ) ;
982
982
if ( storageFile != null )
983
983
{
984
- var succ = await Task . Run ( ( ) => Commands . SaveChangesAsPatch . Exec ( _repo . FullPath , _selectedStaged , false , storageFile . Path . LocalPath ) ) ;
984
+ var succ = await Task . Run ( ( ) => Commands . SaveChangesAsPatch . ProcessLocalChanges ( _repo . FullPath , _selectedStaged , false , storageFile . Path . LocalPath ) ) ;
985
985
if ( succ )
986
986
App . SendNotification ( _repo . FullPath , App . Text ( "SaveAsPatchSuccess" ) ) ;
987
987
}
@@ -1156,7 +1156,7 @@ public ContextMenu CreateContextMenuForStagedChanges()
1156
1156
var storageFile = await storageProvider . SaveFilePickerAsync ( options ) ;
1157
1157
if ( storageFile != null )
1158
1158
{
1159
- var succ = await Task . Run ( ( ) => Commands . SaveChangesAsPatch . Exec ( _repo . FullPath , _selectedStaged , false , storageFile . Path . LocalPath ) ) ;
1159
+ var succ = await Task . Run ( ( ) => Commands . SaveChangesAsPatch . ProcessLocalChanges ( _repo . FullPath , _selectedStaged , false , storageFile . Path . LocalPath ) ) ;
1160
1160
if ( succ )
1161
1161
App . SendNotification ( _repo . FullPath , App . Text ( "SaveAsPatchSuccess" ) ) ;
1162
1162
}
0 commit comments