Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug fixes
  • Loading branch information
frida-161 committed Nov 30, 2021
1 parent 02af9ce commit f5d6800
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python/plugins/MetaSearch/dialogs/apidialog.py
Expand Up @@ -27,7 +27,7 @@

from MetaSearch.util import get_ui_class

BASE_CLASS = get_ui_class('apidialog.ui')
BASE_CLASS = get_ui_class('xmldialog.ui')


class APIRequestResponseDialog(QDialog, BASE_CLASS):
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/MetaSearch/dialogs/maindialog.py
Expand Up @@ -89,8 +89,8 @@ def __init__(self, iface):
# form inputs
self.startfrom = 1
self.constraints = []
self.maxrecords = self.settings.value('/MetaSearch/returnRecords', 10)
self.timeout = self.settings.value('/MetaSearch/timeout', 10)
self.maxrecords = int(self.settings.value('/MetaSearch/returnRecords', 10))
self.timeout = int(self.settings.value('/MetaSearch/timeout', 10))
# QgsSettings.value returns 'false' not False(!)
self.disable_ssl_verification = self.settings.value(
'/MetaSearch/disableSSL', 'false') != 'false'
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/MetaSearch/metadata.txt
Expand Up @@ -3,7 +3,7 @@ name=MetaSearch Catalog Client
description=MetaSearch is a QGIS plugin to interact with metadata catalog services (CSW).
about=MetaSearch is a QGIS plugin to interact with metadata catalog services, supporting the OGC Catalog Service for the Web (CSW) standard. MetaSearch provides an easy and intuitive approach and user-friendly interface to searching metadata catalogs within QGIS.
category=Web
version=0.3.5
version=0.3.6
qgisMinimumVersion=3.0
icon=images/MetaSearch.svg
author=Tom Kralidis
Expand Down
File renamed without changes.

0 comments on commit f5d6800

Please sign in to comment.