fix comments 2

This commit is contained in:
fgsfds 2025-08-05 13:01:59 +05:00 committed by GitHub
parent 1133d56d9c
commit fce7f1213d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -511,12 +511,12 @@ func (s *ServerService) GetXrayLogs(
line := strings.TrimSpace(scanner.Text())
if line == "" || strings.Contains(line, "api -> api") {
//skipping api calls and empty lines
//skipping empty lines and api calls
continue
}
if filter != "" && !strings.Contains(line, filter) {
//applying filter is it's not empty
//applying filter if it's not empty
continue
}