-
Notifications
You must be signed in to change notification settings - Fork 235
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixing bug introduced in Ventura 13.0B2 #208
base: master
Are you sure you want to change the base?
Conversation
I appreciate this and I'm glad it's working for you now. I don't think I can merge it as-is because, while it may work on Ventura, it looks like it would break Itsycal on all previous versions of macOS. I'm going to have to do more research. |
Ah, OK there's a spare pre-Ventura box in my office I'll give it a spin on once I'm back from my summer break and I can test a fix that works for both there, (would just take an if nil check I suspect) |
I found an Apple EventKit engineer on Twitter and asked about the issue you found: I believe Ventura has a feedback app where you can report bugs. When you submit, it should give you a feedback number. Could you submit this bug per the tweet above and tell me the feedback number so I can forward it to the engineer? As for the fix, while it prevents the crash, I don't think I can use it because |
OK, I've submitted feedback via the apple tool and have the ID: |
Thank you! I have forwarded the feedback number to the Apple dev. |
The Apple dev responded: Here are instructions for triggering sysdiagnose: sysdiagnose_Logging_Instructions.pdf (The original PDF is from this URL: https://download.developer.apple.com/OS_X/OS_X_Logs/sysdiagnose_Logging_Instructions.pdf) I realize submitting feedback to Apple is a bit of a pain so I really appreciate you helping me with this. 🙏 |
In the apple ticket this only seems to impact Exchange and google calendars, and removing and re-adding the calendars didn't fix the problem. I've not got a spare machine to attempt a full re-install from scratch with the beta to see if it's related to some db corruption during an update (wouldn't be the first time in recent updates). I'll try to put together a sysdiagnose from a Ventura install in the office in a week or 2 but unfortunately I'm a little pressed for time atm. I'm not happy sharing with apple a bunch very low level of machine specs, exactly how I'm using my equipment, and a full breakdown of everything my wifi antenna sees at home (and the rest). This information is almost guaranteed to be unrelated. (Feel free to share this opinion with Apple if you think it would help, but I suspect they're box ticking and won't proceed until they get a bunch of unrelated information they don't need to allow them to collect heuristics) I would have thought a full description of how to re-create the problem tested on 2 macbooks (had a friend chime in), an application crashdump, a workaround for the crash, and effectively an example piece of code for how to demonstrate the problem would have been enough for Apple, but apparently not 😛 |
If you can eventually replicate the bug on a non-personal work machine and submit a sysdiagnose, great. If not, I completely understand. I don't understand why they'd need so much info for this issue either. Thank you for your help. |
For what it's worth, the release version of itsycal is working for me in the released version of Ventura with a Google account. |
@jacobweberbowery That's great to hear. Thanks for the info! |
Hi, I just wanted to also report that I have currently no issues with Ventura (macOS 13.0 (22A380)) + itsycal + Google Calendar. (PS: thanks for the great app!) |
I am having an issue and its not loading for me OS: Version 13.0 (22A380) |
@Semkoo Can you try this: https://www.mowglii.com/2022/11/05/ventura.html |
Uncheck Calendar did the trick so yes it worked But when checking it back its not loading the events |
@rob-c I'm wondering if you can still replicate this issue. If so, can you tell me if in the cases where |
Any chance that Sonoma has addressed this problem? I'm using Itsycal fine on macOS 14, however I don't seem to have any System Prefs-level Internet Accounts, so I guess I wouldn't have seen the problem. |
Firstly, thanks for the amazing project! 😃
This is the minimal change I've needed to get Itsycal working on Ventura 13.0B2
Without this Itsycal.app is crashing on startup when there are microsoft or google calendars setup on MacOS.
(The
calendar.source.title
object was defined asnil
for non MacOS calendars which caused a crash on line 204 within a worker thread)Not sure exactly if this is a bug/feature/change in MacOS so don't know if there is a better fix, this was just reaching for the smallest change needed.