diff --git a/changelog/unreleased/4800 b/changelog/unreleased/4800
new file mode 100644
index 00000000000..3a7e17b270b
--- /dev/null
+++ b/changelog/unreleased/4800
@@ -0,0 +1,6 @@
+Bugfix: Add margin in members list for long display names in all cases
+
+An extra margin has been added to the right side in the list of members when the display name is long, preventing the text from overflowing.
+
+https://github.com/owncloud/android/issues/4781
+https://github.com/owncloud/android/pull/4800
diff --git a/owncloudApp/src/main/res/layout/member_item.xml b/owncloudApp/src/main/res/layout/member_item.xml
index 1f72dd4c956..5dafba7156c 100644
--- a/owncloudApp/src/main/res/layout/member_item.xml
+++ b/owncloudApp/src/main/res/layout/member_item.xml
@@ -43,14 +43,16 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
+ android:layout_marginEnd="@dimen/standard_half_margin"
android:orientation="vertical">
-
+
\ No newline at end of file