[Bugfix][Server] WMTS: read the service url from project

It is a typo fix
This commit is contained in:
rldhont 2019-04-18 13:50:28 +02:00
parent 0f1660990f
commit fc3401cb91

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( "/" ), "" );
}