We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b21cbf8 commit f21a1fcCopy full SHA for f21a1fc
infrastructure/cloudfrontLambdaAssociations.ts
@@ -264,7 +264,7 @@ function getSDKRedirect(uri: string): string | undefined {
264
265
// redirect /resources/* to /events/* following workshop+event URL rename to capture orphaned links
266
function getResourcesRedirect(uri: string): string | undefined {
267
- if (uri.includes("/resources/")) {
+ if (uri.startsWith("/resources/")) {
268
return uri.replace("/resources/", "/events/");
269
}
270
0 commit comments