warwickmm
warwickmm
This seems pretty important. Can we get some more attention on this issue?
It [looks intentional](https://github.com/twofas/2fas-ios/commit/5f6988d528a7a0054a2e79b10827dc67818e335f). For me, version 5.3.10 hasn't resolve any of the widget issues that I'm encountering (#94, #154).
#2383 is slightly related.
This could also open up the opportunity for us to determine which options are expected to have an accompanying value, and notify the user if one is not provided.
Thanks @cmpute. Sorry for the delay. We are quite resource constrained, so it may take some time before this gets some proper review. We are also trying to balance introducing...
> @warwickmm I'm not sure what's the reason here, it seems somewhere the inputs for Parity module are null? Could you please share a test case? I haven't had time...
I get the error when running the following script on Linux: ``` source_dir=$(mktemp -d) local_db=$(mktemp) mono Duplicati/CommandLine/bin/Debug/Duplicati.CommandLine.exe "backup" "file:///tmp/tmpgqcuflet" "${source_dir}" --backup-name="Local" --dbpath="${local_db}" --no-encryption --parity-redundancy-level=10 ``` This yields the output: ```...
Thanks @cmpute for your work in getting this started. We can leave this as a draft and see if there are others willing to continue the work.
I'm experiencing this as well with version 5.3.10 on an iPhone 12 mini running iOS 18.0.1.
`Index.union` exhibits the same behavior: ``` >>> import pandas as pd >>> >>> index1 = pd.Index([0, 1]) >>> index2 = pd.Index([0, 1]) >>> index3 = index1.union(index2) >>> index3 is index1...