We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfc2f17 commit 4bffd0bCopy full SHA for 4bffd0b
src/GHOSTbackup/GHOSTbackup.Helpers/BackupHelper.vb
@@ -58,7 +58,7 @@ Public Class BackupHelper
58
'If the current backup directory contains at least one valid backup
59
If BackupDirs.Count >= 1 Then
60
'Store the timestamp of the last directory in the list
61
- e.Result = Directory.GetCreationTime(BackupDirs.Item(BackupDirs.Count - 1)).ToString("yyyy-MM-dd HH:mm")
+ e.Result = Directory.GetCreationTime(BackupDirs.Item(BackupDirs.Count - 1)).ToString("g", CultureInfo.CurrentUICulture)
62
Else
63
'No valid directory found, set Result to Nothing
64
e.Result = Nothing
0 commit comments