From e0424f492cafe67ee543c0cebfe248cf3a82223c Mon Sep 17 00:00:00 2001 From: Arno Hautala Date: Sun, 10 Sep 2023 21:33:19 -0400 Subject: [PATCH] fix update_items --- beets/ui/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index c498ea2a7..275927037 100755 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -1213,7 +1213,7 @@ def update_items(lib, query, album, move, pretend, fields, fields.append('path') items, _ = _do_query(lib, query, album) - item_fields = fields or library.Item._media_fields + item_fields = fields or library.Item._fields.keys() album_fields = fields or library.Album._fields.keys() if exclude_fields: item_fields = [f for f in item_fields if f not in exclude_fields]