Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit f5f6489

Browse files
committed
Fix FTP/SFTP Upload
1 parent 057491d commit f5f6489

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

UI/MainWindowSPCompiler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ private void FTPUpload_Plugins()
267267
foreach (var file in nonUploadedFiles)
268268
{
269269
var fileInfo = new FileInfo(file);
270-
if (!fileInfo.Exists)
270+
if (fileInfo.Exists)
271271
{
272272
string uploadDir;
273273
if (string.IsNullOrWhiteSpace(c.FTPDir))

UI/Windows/AboutWindow.xaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
<StackPanel HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="325,15,0,15">
5050
<TextBlock HorizontalAlignment="Left" VerticalAlignment="Top" Text="- Julien 'Aeon' Kluge (Original creator of SPEdit)" FontWeight="Bold" FontSize="15" />
5151
<TextBlock HorizontalAlignment="Left" VerticalAlignment="Top" Text="- Bara (Tester, Proposer, Contributor, Update Server, Domain)" FontWeight="Bold" FontSize="13" />
52+
<TextBlock HorizontalAlignment="Left" VerticalAlignment="Top" Text="- Hexah (Maintainer, Italian translation)" FontWeight="Bold" FontSize="13" />
5253
<TextBlock HorizontalAlignment="Left" VerticalAlignment="Top" Text="- mev (Proposer, Contributor, Color-Sheme-Designer)" FontWeight="Bold" />
5354
<TextBlock HorizontalAlignment="Left" VerticalAlignment="Top" Text="- BAILOPAN (Proposer, Help)" />
5455
<TextBlock HorizontalAlignment="Left" VerticalAlignment="Top" Text="- necavi (Tester, Proposer, Contributor)" />

0 commit comments

Comments
 (0)