Skip to content

Commit 0e9cf25

Browse files
committed
Allow a much longer Query/Fragment in emails.
This was getting truncated way too prematurely. There's plenty more room before it begins to cause a problem.
1 parent e7d3f77 commit 0e9cf25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sentry/templates/sentry/partial/interfaces/http_email.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
<tr>
1919
<th>{% trans "Query" %}</th>
2020
<td>
21-
<code>{{ query_string|truncatechars:20 }}</code>
21+
<code>{{ query_string|truncatechars:100 }}</code>
2222
</td>
2323
</tr>
2424
{% endif %}
2525
{% if fragment %}
2626
<tr>
2727
<th>{% trans "Fragment" %}</th>
2828
<td>
29-
<code>{{ fragment|truncatechars:20 }}</code>
29+
<code>{{ fragment|truncatechars:100 }}</code>
3030
</td>
3131
</tr>
3232
{% endif %}

0 commit comments

Comments
 (0)