From ed9413afe7d53da4df48da87039f3c80bbe0fa0d Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Wed, 16 Apr 2014 19:38:04 +0000 Subject: [PATCH] * prefix with package name to make sure it's unique, and also it adheres to how xattr are used on OSX -- lose compatibility with previously written xattr :( --- source/net/sourceforge/filebot/media/MetaAttributes.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/net/sourceforge/filebot/media/MetaAttributes.java b/source/net/sourceforge/filebot/media/MetaAttributes.java index 26ec389e..4c13f9fe 100644 --- a/source/net/sourceforge/filebot/media/MetaAttributes.java +++ b/source/net/sourceforge/filebot/media/MetaAttributes.java @@ -13,8 +13,8 @@ import com.cedarsoftware.util.io.JsonWriter; public class MetaAttributes { - private static final String FILENAME_KEY = "filename"; - private static final String METADATA_KEY = "metadata"; + private static final String FILENAME_KEY = "net.filebot.filename"; + private static final String METADATA_KEY = "net.filebot.metadata"; private final BasicFileAttributeView fileAttributeView; private final MetaAttributeView metaAttributeView;