We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fdbca2 commit 489894fCopy full SHA for 489894f
1 file changed
src/UniGetUI/Services/GitHubBackupService.cs
@@ -27,8 +27,8 @@ public class GitHubBackupService
27
public GitHubBackupService(GitHubAuthService authService)
28
{
29
_authService = authService;
30
- DeviceUserUniqueIdentifier = $"{Environment.MachineName}\\{Environment.UserName}";
31
- GistFileKey = $"{DeviceUserUniqueIdentifier}";
+ DeviceUserUniqueIdentifier = $"{Environment.MachineName}\\{Environment.UserName}".Replace(" ", "");
+ GistFileKey = $"PACKAGES {DeviceUserUniqueIdentifier}";
32
}
33
34
private async Task<GitHubClient?> CreateClientAsync()
0 commit comments