🎨 Improve minimum version requirements for marketplace packages https://github.com/siyuan-note/siyuan/issues/16688

Signed-off-by: Daniel <845765@qq.com>
This commit is contained in:
Daniel 2025-12-30 17:45:45 +08:00
parent 818846025b
commit 93aaba92f7
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -193,8 +193,8 @@ func InstalledWidgets() (ret []*Widget) {
return
}
func getBazaarWidget(name string, widegets []*Widget) *Widget {
for _, p := range widegets {
func getBazaarWidget(name string, widgets []*Widget) *Widget {
for _, p := range widgets {
if p.Name == name {
return p
}