Skip to content

Commit 4e3c774

Browse files
committed
Removes sorting of domain names when creating a certificate
1 parent 725ba83 commit 4e3c774

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/internal/certificate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const internalCertificate = {
114114
data.owner_user_id = access.token.getUserId(1);
115115

116116
if (data.provider === 'letsencrypt') {
117-
data.nice_name = data.domain_names.sort().join(', ');
117+
data.nice_name = data.domain_names.join(', ');
118118
}
119119

120120
return certificateModel

0 commit comments

Comments
 (0)