Shun Zi
Shun Zi
@liuweiGL 有的时候可能不想要测试所有节点(时间太久)而只想测某一些或者某一段节点,这样设计就方便很多。
Managed to fix MSVC build process, and added installer generation process: #3 Here is the win32 installer built from my forked repository: https://ci.appveyor.com/project/shunf4/cutemarked-ng/build/artifacts
I suggest adding this project to AppVeyor and updating the build status badge in README😄
I made a userscript as "an awful temporary fix" to this, using the way described in https://github.com/TTFM-Labs/public/issues/7#issuecomment-812801722: https://greasyfork.org/en/scripts/445244-musi-sh-fix/code
You can try my fork and see if the problem exists: https://github.com/shunf4/tcpproxy/tree/shunf4_mod_ng This fork didn't do many changes to the original main branch.
I've implemented it in my fork: https://github.com/shunf4/Readrops/commit/7eebd28e1d5972308663d87f069d9f9788b9fc72 But it's probably not good enough to be in this repository.
@Shinokuni I'm using a self-hosted FreshRSS instance on an unrooted device, and after removing and re-adding the account I haven't come across this issue yet. So unfortunately I am unable...
I believe this issue is fixed in commit cfa764e78bfd6120f25932b1c48975b80cbf1ce2, for now items that exist on device(thus with uninitialized `feedId`) is no longer inserted into the database. See below: https://github.com/readrops/Readrops/commit/cfa764e78bfd6120f25932b1c48975b80cbf1ce2#diff-b37765f42b5ae2d26f91ed6a781e02759b28365d252f06ac99320846a2ecf157L232
Enabling placeholders in `buildPagedList()` will fix this. https://github.com/readrops/Readrops/blob/28dda2f1b514a470cd6a12a11bcc717b200e8bdb/app/src/main/java/com/readrops/app/itemslist/MainViewModel.java#L75 In addition, we should check for null after `getItem(position)` in `getPreloadItems` since it now can be null.https://github.com/readrops/Readrops/blob/28dda2f1b514a470cd6a12a11bcc717b200e8bdb/app/src/main/java/com/readrops/app/itemslist/MainItemListAdapter.java#L221 Will there be other side...
> Are you sure this will fix the bug? Yes. Another place to take care of https://github.com/readrops/Readrops/blob/28dda2f1b514a470cd6a12a11bcc717b200e8bdb/app/src/main/java/com/readrops/app/itemslist/MainItemListAdapter.java#L153 Then I believe at least there would not be any NullPointerException crash. I've...