From: Antonio Ospite <ao2@ao2.it> Date: Fri, 20 May 2016 16:01:44 +0000 (+0200) Subject: rss_converter_instagram.com.xsl: use a stricter match for some elements X-Git-Tag: v0.6~14 X-Git-Url: https://git.ao2.it/tweeper.git/commitdiff_plain/3b1e1c0b5f47e564451639e4b775e3be5b5a6597?ds=sidebyside;hp=-c rss_converter_instagram.com.xsl: use a stricter match for some elements --- 3b1e1c0b5f47e564451639e4b775e3be5b5a6597 diff --git a/rss_converter_instagram.com.xsl b/rss_converter_instagram.com.xsl index 97d39d2..7799a6e 100644 --- a/rss_converter_instagram.com.xsl +++ b/rss_converter_instagram.com.xsl @@ -51,7 +51,7 @@ </xsl:choose> </xsl:variable> - <xsl:template match="//media/nodes"> + <xsl:template match="//ProfilePage/user/media/nodes"> <xsl:variable name="item-content-image" select="./display_src"/> <xsl:variable name="item-content-caption" select="./caption"/> <xsl:variable name="item-permalink" select="concat($BaseURL, '/p/', ./code, '/')"/> @@ -129,10 +129,10 @@ <xsl:value-of select="$channel-link"/> </link> <url> - <xsl:value-of select="//user/profile_pic_url"/> + <xsl:value-of select="//ProfilePage/user/profile_pic_url"/> </url> </image> - <xsl:apply-templates select="//media/nodes"/> + <xsl:apply-templates select="//ProfilePage/user/media/nodes"/> </channel> </rss> </xsl:template>