Skip to content

Commit

Permalink
Update InfoTable.java
Browse files Browse the repository at this point in the history
  • Loading branch information
bit4woo committed Jun 14, 2024
1 parent c25bb40 commit 51827e9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/messageTab/Info/InfoTable.java
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,9 @@ public List<String> getSelectedUrls() {
int[] rows = this.getSelectedRows();
List<String> result = new ArrayList<>();
for (int row : rows) {
List<String> line = new ArrayList<>();
try {
String value = (String) this.getValueAt(row, 0);
if (UrlUtils.isVaildUrl(value)) {
if (!value.contains("@")) {
result.add(value);
}
} catch (Exception e) {
Expand Down

0 comments on commit 51827e9

Please sign in to comment.