Skip to content

Commit f3790f9

Browse files
authored
Update quickstart-create-example-consumption-workflow.md
Clarify steps to fix double-encoding behavior.
1 parent e33e152 commit f3790f9

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

articles/logic-apps/quickstart-create-example-consumption-workflow.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,17 +134,21 @@ This example uses an RSS trigger that checks an RSS feed, based on the specified
134134

135135
:::image type="content" source="media/quickstart-create-example-consumption-workflow/add-rss-trigger-settings.png" alt-text="Screenshot shows the RSS trigger settings, including RSS URL, frequency, interval, and others." lightbox="media/quickstart-create-example-consumption-workflow/add-rss-trigger-settings.png":::
136136

137-
1. On the designer toolbar, select **Code view**.
137+
1. This specific trigger requires a workaround due to double-encoding behavior. So, on the *designer* toolbar, select **Code view**.
138+
139+
> [!IMPORTANT]
140+
>
141+
> Don't select **Code view** in the trigger information pane, which opens code view in read-only mode.
138142
139143
1. In the code editor, find the line **`"feedUrl": "@{encodeURIComponent(encodeURIComponent(`https://feeds.a.dj.com/rss/RSSMarketsMain.xml'))}"`**.
140144

141145
1. Remove the extra function named **`encodeURIComponent()`** so that you have only one instance, for example:
142146

143147
**`"feedUrl": "@{encodeURIComponent('https://feeds.a.dj.com/rss/RSSMarketsMain.xml')}"`**
144148

145-
This change is necessary to remove double-encoding behavior, which requires manual correction.
149+
You must make manually make this change to remove the double-encoding behavior.
146150

147-
1. Switch back to the designer.
151+
1. Now, return to the designer. On the code editor toolbar, select **Designer**.
148152

149153
1. Save your workflow. On the designer toolbar, select **Save**.
150154

0 commit comments

Comments
 (0)