Skip to content

Commit

Permalink
fix(info.xslt): update donation attribute references
Browse files Browse the repository at this point in the history
Signed-off-by: Edward Ly <contact@edward.ly>
  • Loading branch information
edward-ly committed Sep 19, 2024
1 parent 94c75c0 commit 5b130e0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nextcloudappstore/api/v1/release/info.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -108,19 +108,19 @@
<xsl:value-of select="."/>
</url>
<xsl:choose>
<xsl:when test="donation/@title">
<xsl:when test="@title">
<title>
<xsl:value-of select="donation/@title"/>
<xsl:value-of select="@title"/>
</title>
</xsl:when>
<xsl:otherwise>
<title>Donate to support this app</title>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="donation/@type">
<xsl:when test="@type">
<type>
<xsl:value-of select="donation/@type"/>
<xsl:value-of select="@type"/>
</type>
</xsl:when>
<xsl:otherwise>
Expand Down

0 comments on commit 5b130e0

Please sign in to comment.