Skip to content

Commit

Permalink
UserAgent条目空格问题修改
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard-Tang committed Jan 9, 2023
1 parent 82a0dbf commit 8f10e09
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/burp/ui/useragent/UserAgentPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ public UserAgentPanel(final IBurpExtenderCallbacks iBurpExtenderCallbacks) {
FileUtil.readLines(inputStream, UserAgentCore.mobileUserAgent);
}
for (String line : UserAgentCore.pcUserAgent) {
pcTextArea.append(line);
pcTextArea.append("\r\n");
pcTextArea.append(line.trim());
pcTextArea.append("\n");
}
for (String line : UserAgentCore.mobileUserAgent) {
mobileTextArea.append(line);
mobileTextArea.append("\r\n");
mobileTextArea.append(line.trim());
mobileTextArea.append("\n");
}
}

Expand Down

0 comments on commit 8f10e09

Please sign in to comment.