diff --git a/README.md b/README.md index df43af1e..e99ba516 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ This project provides a RESTful web API to query and manipulate a [Gramps](https The documentation of the current state of the API can be browsed with Swagger: -[Gramps API docs](https://gramps-project.github.io/gramps-webapi/) +[Gramps API docs](https://gramps-project.github.io/gramps-web-api/) The project is still under development, so API changes should be expected. diff --git a/gramps_webapi/api/search.py b/gramps_webapi/api/search.py index 03ab5843..b5507a22 100644 --- a/gramps_webapi/api/search.py +++ b/gramps_webapi/api/search.py @@ -57,7 +57,7 @@ def object_to_strings(obj) -> Tuple[str, str]: text_data_child_list = obj.get_text_data_child_list() if isinstance(obj, Place) and obj.name not in text_data_child_list: # fix necessary for Gramps 5.1 - # (see https://github.com/gramps-project/gramps-webapi/issues/245) + # (see https://github.com/gramps-project/gramps-web-api/issues/245) text_data_child_list.append(obj.name) for child_obj in text_data_child_list: if hasattr(child_obj, "get_text_data_list"):