loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request '[CHORE] Fix darwin compatibility' (#4906) from gusted/forgejo-os-compile into forgejo

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4906
Reviewed-by: Caesar Schinas <caesar@caesarschinas.com>

Gusted 0f7a98d3 91115b39

+3 -1
+3 -1
modules/log/color_console_other.go
··· 39 39 return 0, 0, false 40 40 } 41 41 42 - return stat.Dev, stat.Ino, true 42 + // Do a type conversion to uint64, because Dev isn't always uint64 43 + // on every operating system + architecture combination. 44 + return uint64(stat.Dev), stat.Ino, true //nolint:unconvert 43 45 } 44 46 45 47 func fileIsDevIno(file *os.File, dev, ino uint64) bool {