diff --git a/core/modules/migrate_drupal/config/install/migrate.migration.d6_system_rss.yml b/core/modules/migrate_drupal/config/install/migrate.migration.d6_system_rss.yml
index ab98e61..36b3bff 100644
--- a/core/modules/migrate_drupal/config/install/migrate.migration.d6_system_rss.yml
+++ b/core/modules/migrate_drupal/config/install/migrate.migration.d6_system_rss.yml
@@ -6,8 +6,10 @@ source:
   plugin: variable
   variables:
     - feed_default_items
+    - feed_item_length
 process:
   'items/limit': feed_default_items
+  'items/view_mode': feed_item_length
 destination:
   plugin: config
   config_name: system.rss
diff --git a/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemRss.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemRss.php
index ecf7488..1cb8b08 100644
--- a/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemRss.php
+++ b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemRss.php
@@ -25,6 +25,10 @@ public function load() {
       'name' => 'feed_default_items',
       'value' => 'i:10;',
     ))
+    ->values(array(
+      'name' => 'feed_item_length',
+      'value' => 's:5:"title";',
+    ))
     ->execute();
   }
 }
diff --git a/core/modules/migrate_drupal/src/Tests/d6/MigrateSystemRssTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateSystemRssTest.php
index ad93ad3..750d80a 100644
--- a/core/modules/migrate_drupal/src/Tests/d6/MigrateSystemRssTest.php
+++ b/core/modules/migrate_drupal/src/Tests/d6/MigrateSystemRssTest.php
@@ -38,6 +38,7 @@ protected function setUp() {
   public function testSystemRss() {
     $config = \Drupal::config('system.rss');
     $this->assertIdentical($config->get('items.limit'), 10);
+    $this->assertIdentical($config->get('items.view_mode'), 'title');
   }
 
 }
