mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-26 00:29:20 +08:00
@ -6,6 +6,7 @@
|
||||
- "More robust error handling"
|
||||
bugs:
|
||||
- text: "Fix ShareTo being broken in the last release"
|
||||
- text: "Support for non-rsa ssh keys - #516"
|
||||
|
||||
- version: "1.76"
|
||||
date: 2021-04-23
|
||||
|
@ -24,7 +24,7 @@ class PublicKeyEditor extends StatelessWidget {
|
||||
}
|
||||
|
||||
val = val.trim();
|
||||
if (!val.startsWith("ssh-rsa ")) {
|
||||
if (!val.startsWith("ssh-rsa ") && !val.startsWith("ecdsa-sha2")) {
|
||||
return tr("setup.keyEditors.public");
|
||||
}
|
||||
return null;
|
||||
|
Reference in New Issue
Block a user