Closed
Description
- Gitea version (or commit ref): 1.1.2
- Git version: 2.1.4
- Operating system: Bananian (Debian Jessie, ARM)
- Database (use
[x]
):- PostgreSQL
- MySQL
- MSSQL
- SQLite
- Can you reproduce the bug at https://try.gitea.io:
- Yes (provide example URL)
- No
- Not relevant
- Log gist:
Description
When referencing commit hashes within issue comments, they are never linked to the corresponding commit – whether separate on a line or enclosed by text (yes, I saw #1667), whether shortened to 7, 10 or not at all (in which case the parser shortens the string, but doesn't link it) – no link.
Of course the corresponding commits exist in the very same project, so it's not that there'd be no target. As the linking does work on try.gitea.io it seems that either something must be missing with my installation (single-binary drop-in: gitea-1.1.2-linux-arm-7
), or this is a bug specific to the ARM build.
Example
For this input:
foo
5c5c946673
bar 5c5c946673ebd1fdcc996a5a198699b4e3ace9b4
Result is rendered like this:
<div class="ui bottom attached tab segment markdown active" data-tab="preview"><p>foo</p>
<p>5c5c946673</p>
<p>bar 5c5c94667</p>
</div>
The last line suggests Gitea did recognize it as hash, as otherwise I don't see why it got shortend.