Skip to content

Commit 028f5ce

Browse files
authored
Fix subscription activation url (#6524)
Task/Issue URL: https://app.asana.com/1/137249556945/project/1202552961248957/task/1210974305229051?focus=true ### Description The subscription activation URL had an extra `/subscriptions/` in the URL causing a loop where you can't activate the subscription ### Steps to test this PR _Feature 1_ - [ ] - [ ] ### UI changes | Before | After | | ------ | ----- | !(Upload before screenshot)|(Upload after screenshot)|
1 parent 648e349 commit 028f5ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subscriptions/subscriptions-impl/src/main/java/com/duckduckgo/subscriptions/impl/internal/SubscriptionsUrlProvider.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class RealSubscriptionsUrlProvider @Inject constructor(
3535

3636
override val welcomeUrl: String = "${subscriptionsBaseUrl.subscriptionsBaseUrl}/welcome"
3737

38-
override val activateUrl: String = "${subscriptionsBaseUrl.subscriptionsBaseUrl}/subscriptions/activation-flow"
38+
override val activateUrl: String = "${subscriptionsBaseUrl.subscriptionsBaseUrl}/activation-flow"
3939

4040
override val manageUrl: String = "${subscriptionsBaseUrl.subscriptionsBaseUrl}/manage"
4141
}

0 commit comments

Comments
 (0)