File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -135,15 +135,16 @@ class ApiParameterExtractor {
135
135
~ApiParameterExtractor () {}
136
136
137
137
bool populate_tabs () {
138
- if (params_->get_info .get () && params_->get_info ->populate .get ())
139
- return *params_->get_info ->populate ;
138
+ if (params_->query_options .get () && params_->query_options ->populate .get ())
139
+ return *params_->query_options ->populate ;
140
140
return false ;
141
141
}
142
142
143
143
WindowController::TypeFilter type_filters () {
144
- if (params_->get_info .get () && params_->get_info ->window_types .get ())
144
+ if (params_->query_options .get () &&
145
+ params_->query_options ->window_types .get ())
145
146
return WindowController::GetFilterFromWindowTypes (
146
- *params_->get_info ->window_types );
147
+ *params_->query_options ->window_types );
147
148
return WindowController::kNoWindowFilter ;
148
149
}
149
150
You can’t perform that action at this time.
0 commit comments