Skip to content
Snippets Groups Projects
Commit c1c70b28 authored by jurgenhaas's avatar jurgenhaas
Browse files

Fix the boolean handling of hideMine

parent 6adc834c
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ function BaseTrackerSource(dashboard, check, lastActivity) {
this.lastActivity = lastActivity;
this.url = check.url;
this.timeshift = check.pollerParams.tracker_timeshift || 0;
this.hideMine = check.pollerParams.tracker_hidemine || false;
this.hideMine = ((check.pollerParams.tracker_hidemine || 0) == 1);
this.username = check.pollerParams.tracker_username;
this.password = check.pollerParams.tracker_password;
this.project_include = check.pollerParams.tracker_project_include;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment