Merge branch 'bugfix_branch'

bugfix_branch
Selim Eser 2024-06-14 21:11:16 +02:00
commit 0c1b1fbe76
1 changed files with 7 additions and 5 deletions

View File

@ -180,9 +180,11 @@ public class System {
if(username.equals("")||hometown.equals("")||zip.equals(""))
return false;
if(!current_user.getUsername().equals(username)){
for(User user: this.all_user)
if(user.getUsername().equals(username))
return false;
}
ArrayList<String> mem = search(zip);
boolean bool = false;