Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gif timeserie #102

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
remove check for Animate Strategy
  • Loading branch information
jlarouche committed May 14, 2014
commit 9ade35270f8aa42d7ec86233317d7019b020fc03
2 changes: 1 addition & 1 deletion lib/service_wms.c
Original file line number Diff line number Diff line change
@@ -850,7 +850,7 @@ void _mapcache_service_wms_parse_request(mapcache_context *ctx, mapcache_service
/* if we have a getmap or multiple tiles, we must check that assembling is allowed */
(((*request)->type == MAPCACHE_REQUEST_GET_MAP || (
(*request)->type == MAPCACHE_REQUEST_GET_TILE && ((mapcache_request_get_tile*)(*request))->ntiles > 1)) &&
(wms_service->getmap_strategy == MAPCACHE_GETMAP_ASSEMBLE || wms_service->getmap_strategy == MAPCACHE_GETMAP_ANIMATE))
wms_service->getmap_strategy == MAPCACHE_GETMAP_ASSEMBLE)
)) {
/* if we're here, then we have succesfully parsed the request and can treat it ourselves, i.e. from cached tiles */
return;