diff --git a/gaseous-server/wwwroot/pages/dialogs/userprofile.html b/gaseous-server/wwwroot/pages/dialogs/userprofile.html
index e238768..bad8d34 100644
--- a/gaseous-server/wwwroot/pages/dialogs/userprofile.html
+++ b/gaseous-server/wwwroot/pages/dialogs/userprofile.html
@@ -19,8 +19,8 @@
|
@@ -128,7 +128,7 @@
function GetPrefInitialValues() {
var paginationMode = document.getElementById('profile_pref-LibraryPagination');
- paginationMode.value = GetPreference('LibraryPagination', 'infinite');
+ paginationMode.value = GetPreference('LibraryPagination', 'paged');
ConfigurePrefInitialValue_Checkbox("LibraryShowGameTitle", GetPreference("LibraryShowGameTitle", true));
ConfigurePrefInitialValue_Checkbox("LibraryShowGameRating", GetPreference("LibraryShowGameRating", true));
diff --git a/gaseous-server/wwwroot/scripts/gamesformating.js b/gaseous-server/wwwroot/scripts/gamesformating.js
index ed3b686..27f921d 100644
--- a/gaseous-server/wwwroot/scripts/gamesformating.js
+++ b/gaseous-server/wwwroot/scripts/gamesformating.js
@@ -12,7 +12,7 @@ function formatGamesPanel(targetElement, result, pageNumber, pageSize) {
console.log("Displaying page: " + pageNumber);
console.log("Page size: " + pageSize);
- var pageMode = GetPreference('LibraryPagination', 'infinite');
+ var pageMode = GetPreference('LibraryPagination', 'paged');
if (pageNumber == 1 || pageMode == 'paged') {
targetElement.innerHTML = '';