Branch

run build

Sun Sep 28 2025

tucker <tucker@pangolin.lan>


    

2ecfa733d586d48cef24d28d921b46d90dca8adc

Side-by-side
Stacked
dist/src/vcses/git/operations.js:58
Before
58 59
            const author = currentPatch[1].replace("Author: ", "").trim();
            const date = currentPatch[2].replace("Date: ", "").trim();
After
58 59 60 61 62 63 64 65 66
            let author, date;
            [1, 2, 3].forEach((lineNumber) => {
                if (currentPatch[lineNumber].startsWith("Author")) {
                    author = currentPatch[lineNumber].replace("Author: ", "").trim();
                }
                else if (currentPatch[lineNumber].startsWith("Date")) {
                    date = currentPatch[lineNumber].replace("Date: ", "").trim();
                }
            });