Fix possible issue if configured progress type is null
Using spreading progress by default if it is null. FEA: ItEr75S04BugFixing
This commit is contained in:
parent
9a759a3d82
commit
117565e4c6
1 changed files with 2 additions and 1 deletions
|
|
@ -291,7 +291,8 @@ public class Configuration extends BaseEntity {
|
|||
}
|
||||
|
||||
public ProgressType getProgressType() {
|
||||
return progressType;
|
||||
return (progressType == null) ? ProgressType.SPREAD_PROGRESS
|
||||
: progressType;
|
||||
}
|
||||
|
||||
public void setCompanyLogoURL(String companyLogoURL) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue