Merge pull request #9826 from rldhont/fix-server-wmts-serviceurl

[Bugfix][Server] WMTS: read the service url from project
This commit is contained in:
rldhont 2019-04-18 16:19:33 +02:00 committed by GitHub
commit bca78c05c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -345,5 +345,5 @@ QStringList QgsServerProjectUtils::wcsLayerIds( const QgsProject &project )
QString QgsServerProjectUtils::wmtsServiceUrl( const QgsProject &project )
{
return project.readEntry( QStringLiteral( "WMTSSUrl" ), QStringLiteral( "/" ), "" );
return project.readEntry( QStringLiteral( "WMTSUrl" ), QStringLiteral( "/" ), "" );
}