Commit 266c3f0d authored by Mark Harding's avatar Mark Harding

(fix): channel no index should be less than <

parent de34bd78
No related merge requests found
Pipeline #118017986 running with stages
......@@ -138,7 +138,7 @@ export class ChannelComponent {
});
this.metaService.setRobots(
this.user.is_mature ||
this.user['subscribers_count'] > MIN_METRIC_FOR_ROBOTS
this.user['subscribers_count'] < MIN_METRIC_FOR_ROBOTS
? 'noindex'
: 'all'
);
......
Please register or to comment