diff --git a/mopidy_funkwhale/__init__.py b/mopidy_funkwhale/__init__.py
index 389067c691902709bd93e18c14b66cb9855a9bca..70eb1b6e38d8d5d590567ef5fa18bf1238d64e0a 100644
--- a/mopidy_funkwhale/__init__.py
+++ b/mopidy_funkwhale/__init__.py
@@ -38,7 +38,7 @@ class Extension(mopidy.ext.Extension):
         schema["cache_duration"] = mopidy.config.Integer(optional=True)
         schema["verify_cert"] = mopidy.config.Boolean(optional=True)
 
-        schema["show_track_artists"] = mopidy.config.Boolean(optional=True)
+        schema["exclude_compilation_artists"] = mopidy.config.Boolean(optional=True)
 
         return schema
 
diff --git a/mopidy_funkwhale/client.py b/mopidy_funkwhale/client.py
index a9813bb2e286797288da017594c315da8c8eb1a5..9f1b94962b93aa21740bb4728b13ff9e784bfde1 100644
--- a/mopidy_funkwhale/client.py
+++ b/mopidy_funkwhale/client.py
@@ -97,7 +97,7 @@ class APIClient(object):
             self.username = self.config["funkwhale"]["username"]
         self.session.verify = config["funkwhale"].get("verify_cert", True)
 
-        self.show_track_artists = self.config["funkwhale"].get("show_track_artists", False)
+        self.exclude_compilation_artists = self.config["funkwhale"].get("exclude_compilation_artists", True)
 
     @property
     def use_oauth(self):
@@ -134,7 +134,7 @@ class APIClient(object):
         return response.json()
 
     def list_artists(self, filters):
-        if not self.show_track_artists:
+        if self.exclude_compilation_artists:
             filters = {"has_albums": "true", **filters}
 
         response = self.session.get("artists/", params=filters)
diff --git a/mopidy_funkwhale/ext.conf b/mopidy_funkwhale/ext.conf
index f02f40f0e54a1786cc1a89f2a533c58e715dc1d6..beac33cfe5dd400b20c671361bb0d577a05bdb71 100644
--- a/mopidy_funkwhale/ext.conf
+++ b/mopidy_funkwhale/ext.conf
@@ -28,6 +28,6 @@ cache_duration = 600
 # Control HTTPS certificate verification. Set it to false if you're using a self-signed certificate
 verify_cert = true
 
-# Show all artists when browsing, even those without albums (e.g. per-track
-# credits or collaborations). Set this to false to only show album artists
-show_track_artists = false
\ No newline at end of file
+# Hide artists that only have track credits when browsing artists.
+# Set this to false to show all artists.
+exclude_compilation_artists = true
\ No newline at end of file