1
0
mirror of synced 2025-12-24 14:08:02 +08:00

Merge pull request #13 from helloxum/master

修复月中周对象在跨年时计算错误的问题
This commit is contained in:
6tail
2022-11-15 18:47:00 +08:00
committed by GitHub

View File

@@ -1965,6 +1965,7 @@
m++;
if (m > 12) {
y++;
m=m-12;
}
}
l.push(SolarWeek.fromYmd(y, m, d, start));