Skip to content

Commit

Permalink
#3210 add: don't use index.php in Nextcloud Deck links
Browse files Browse the repository at this point in the history
Signed-off-by: Patrizio Bekerle <[email protected]>
  • Loading branch information
pbek committed Jan 17, 2025
1 parent 2d524da commit 4e887d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
moved or renamed (for [#3200](https://github.com/pbek/QOwnNotes/issues/3200))
- If the application is built in debug mode the IDs of the notes, note-subfolders and tags
are now shown in the tooltips of their list panels (for [#3200](https://github.com/pbek/QOwnNotes/issues/3200))
- `index.php` will now not be used in Nextcloud Deck links anymore, since it seems
to mess up the deep link to a card (for [#3210](https://github.com/pbek/QOwnNotes/issues/3210))

## 25.1.3
- The `--help-all` option will now not be shown in the help command line function,
Expand Down
2 changes: 1 addition & 1 deletion src/services/nextclouddeckservice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ int NextcloudDeckService::createCard(const QString& title, const QString& descri
QString NextcloudDeckService::getCardLinkForId(int cardId) {
qDebug() << __func__ << " - 'boardId': " << this->boardId;

return QStringLiteral("%1/index.php/apps/deck/#/board/%2/card/%3")
return QStringLiteral("%1/apps/deck/#/board/%2/card/%3")
.arg(this->serverUrl, QString::number(this->boardId), QString::number(cardId));
}

Expand Down

0 comments on commit 4e887d4

Please sign in to comment.