fix: more stuff moved into liveview

This commit is contained in:
2026-04-26 11:36:53 +02:00
parent ad9d8263ec
commit 0376dbf0c3
7 changed files with 347 additions and 52 deletions

View File

@@ -369,7 +369,7 @@ defmodule BDS.Git do
end
defp parse_count(value) do
case Integer.parse(to_string(value || "")) do
case Integer.parse(to_string(value)) do
{count, _rest} -> count
:error -> 0
end