token-import: handle empty urls better

This commit is contained in:
Vincent Breitmoser
2017-09-05 20:28:09 +02:00
parent f1852338af
commit c1773de1c3
2 changed files with 3 additions and 2 deletions

View File

@@ -589,7 +589,7 @@ public class SecurityTokenHelper {
public String getUrl() throws IOException {
byte[] data = getData(0x5F, 0x50);
return new String(data);
return new String(data).trim();
}
public String getUserId() throws IOException {