Skip to content

Commit 83a7382

Browse files
authored
docs(messaging): fix broken usage links (#4749)
Noticed by @milesibastos (thank you!) but expanded to cover all cases, obsoletes #4748
1 parent a8dcd54 commit 83a7382

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/messaging/ios-permissions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ If the user declines the request, you cannot re-request permission, trying to re
1717

1818
## Requesting permissions
1919

20-
As explained in the [Usage](/messaging#ios---requesting-permissions) documentation, permission
20+
As explained in the [Usage](/messaging/usage#ios---requesting-permissions) documentation, permission
2121
must be requested from your users in order to display remote notifications from FCM, via the
2222
`requestPermission` API:
2323

docs/messaging/notifications.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ property to be attached to a message.
1919

2020
If an incoming message with this property exists, and the app is not currently visible (quit or in the background),
2121
a notification is displayed on the device. However, if the application is in the foreground, an event will be delivered
22-
containing the notification data and no visible notification will be displayed. See the [Usage](/messaging) documentation
22+
containing the notification data and no visible notification will be displayed. See the [Usage](/messaging/usage) documentation
2323
to learn more about handling events.
2424

2525
## Via Firebase Console
@@ -62,7 +62,7 @@ await admin.messaging().sendMulticast({
6262

6363
The Cloud Messaging module will intercept these messages and if the `notification` property is available, it will display
6464
a notification on the device (if the app is not in the foreground). Messages sent with both a `notification` and `data` property
65-
will display a notification and also trigger the `onMessage` handlers (see [Usage](/messaging)).
65+
will display a notification and also trigger the `onMessage` handlers (see [Usage](/messaging/usage)).
6666

6767
The different Admin SDKs available have similar implementation details on how to add a custom `notification` property to
6868
the FCM payload, however the Cloud Messaging module will handle all requests. To learn more, view the

docs/messaging/server-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ by default. To enable this functionality, you must set the "priority" to `high`
149149
150150
The `data` property can send an object of key-value pairs totaling `4KB` as string values (hence the `JSON.stringify`).
151151

152-
Back within our application, as explained in the [Usage](/messaging) documentation, our message handlers will receive a
152+
Back within our application, as explained in the [Usage](/messaging/usage) documentation, our message handlers will receive a
153153
[`RemoteMessage`](/reference/messaging/remotemessage) payload containing the message details sent from the server:
154154

155155
```jsx

0 commit comments

Comments
 (0)