Commit e8b261f5 by Nilu

fix issue : HT003, HT005 - If client doesn't have a logo, the Hiring Team's logo…

fix issue : HT003, HT005 - If client doesn't have a logo, the Hiring Team's logo is being used (incorrectly) for Jobs
parent 1a3aaeab
......@@ -475,11 +475,11 @@ public class Job extends BaseJob
public BinaryContent getLogo()
{
if(isClientAvailable() && getClient().getClientLogo()!= null)
if(isClientAvailable())
{
return getClient().getClientLogo();
}
else if(getCompanyUser() != null && getCompanyUser().getCompany().getCompanyLogo() != null)
else if(getCompanyUser() != null)
{
return getCompanyUser().getCompany().getCompanyLogo();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment