Fix another lint error

This commit is contained in:
Alessio 2022-05-07 19:02:02 -07:00
parent 876f617876
commit a39fab14b3

View File

@ -187,10 +187,7 @@ func (p Profile) CheckUserContentDownloadNeeded(user scraper.User) bool {
return true
}
profile_path := p.get_profile_image_output_path(user)
if !file_exists(profile_path) {
return true
}
return false
return !file_exists(profile_path)
}
/**