Hi, after a restart of MM the modul MMM-Instagram is not displaying. In remote control i get this message: This module was hidden by another module, it can not be shown. I choose : Do it anyway. Its working.
When changing the profile always the same.
How can I find the responsible module or what is the reason for the problem.
Here my config:
/* Magic Mirror Config Sample
*
* By Michael Teeuw http://michaelteeuw.nl
* MIT Licensed.
*/
var config = {
	"port": 8080,
	"language": "de",
	"timeFormat": 24,
	"units": "metric",
	"modules": [
		{
			"module": "alert"
		},
		{
			"module": "MMM-SystemStats",
			"header": "System Status",
			"position": "top_left",
			"config": {
				"updateInterval": 10000,
				"animationSpeed": 0,
				"align": "left"
			},
                        "classes": "default everyone"
		},
		{
			"module": "MMM-ProfileSwitcher",
                        "title": false,
			"config": {
                        "useLockStrings": true,
                         ignoreModules: ["alert", "updatenotification", "MMM-Instagram"],
                        "title": false,
                            enterMessages: {
                                 "Ralf Dana": "Wie geht's, %profile%?",
                                 "Dana": "Hallo mein xxxx"
                                  },
                            leaveMessages: false,
                            timers: {
                            // When Ralf is selected swap to Dana after 30 seconds
                                 "Ralf": {
                                    profile: "Dana",
                                    time: 30 * 1000
                                    } 
                           }
                      }
		},
		{
			"module": "MMM-DHT22",
			"header": "Außen",
			"position": "top_left",
			"config": {
				"sensorPIN": 23,
				"updateInterval": 0.5
			},
			"classes": "default everyone"
		},
		{
			"module": "MMM-TouchNavigation",
			"position": "bottom_left",
			"config": {
                           picturePlacement: "right",
                           minWidth: "40px",
                           direction: "row",
				"buttons": {
					"Ralf": {
                                                img: "http://xxxx.jpg",
						"width": "60",
                                                 height: "60"
					},
					"Dana": {
                                                 img: "http://xxxx.jpg",
						"width": "60",
                                                 height: "60"
					}
				}
			},
			"classes": "default everyone"
		},
		{
			"module": "MMM-newsfeedtouch",
			"position": "bottom_bar",
			"config": {
				"feeds": [
					{
						"title": "n-tv",
						"url": "http://www.n-tv.de/rss"
					},
					{
						"title": "Polizei DD",
						"url": "https://www.polizei.sachsen.de/de/presse_rss_pdd.xml"
					},
                                        {
                                                "title": "SZ",
                                                "url": "http://www.sz-online.de/Sachsen.rss"
                                        }
				]
			},
			"classes": "default everyone"
		},
		{
			"module": "MMM-TouchPlayerBasic",
			"position": "bottom_center",
			"config": {
				"stations": [
					"RD dresden",
					"HR hitradio",
					"MDR jumpradio",
					"PSR psr",
					"RSA rsa",
					"ARD ard"
				]
			},
			"classes": "default everyone"
		},
	    {
			"module": "MMM-PIR-Sensor",
			"config": {}
		},
		{
			"module": "MMM-Podcast",
			"config": {},
			"classes": "default everyone"
		},
		{
			"module": "MMM-Admin-Interface"
		},
		{
			"module": "MMM-dht22",
			"position": "top_left",
			"config": {
				"header": "Küche",
				"tempUnit": "celsius",
				"dht22gpio": 22,
				"dht22util": "sudo /home/pi/bin/dht22",
				"updateInterval": 10000,
				"animationSpeed": 0
			},
			"classes": "default everyone"
		},
		{
			"module": "MMM-Remote-Control"
		},
		{
			"module": "MMM-Instagram",
			"position": "top_center",
			"config": {
				"access_token": "xxxx",
				"count": 500,
				"min_timestamp": 0,
				"animationSpeed": 2500,
				"updateInterval": 60000
			},
                        "classes": "default everyone"
		},
		{
			"module": "updatenotification",
			"position": "top_left",
                        "config": {},
                        "classes": "default everyone"
		},
		{
			"module": "clock",
			"position": "top_left",
			"classes": "default everyone"
		},
		{
			"module": "calendar",
			"header": "Termine",
			"position": "top_left",
			"config": {
				"calendars": [
					{
						"symbol": "female",
						"url": "https://xxxx.ics"
					},
					{
						"symbol": "male",
						"url": "https://xxxx.ics"
					}
				]
			},
			"classes": "default everyone"
		},
		{
			"module": "currentweather",
			"header": "Wetter aktuell",
			"position": "top_right",
			"config": {
				"location": "Dresden",
				"locationID": "",
				"appid": "xxxx"
			},
			"classes": "default everyone"
		},
		{
			"module": "weatherforecast",
			"header": "Wetter Vorschau",
			"position": "top_right",
			"config": {
				"location": "Dresden",
				"locationID": "",
				"appid": "xxxx"
			},
			"classes": "default everyone"
		},
		{
			"module": "MMM-Wunderlist",
			"header": "todo Liste",
       			"position": "top_right",
			"config": {
				"accessToken": "xxxx",
				"clientID": "xxxx",
				"lists": [
					"TODO"
				],
				"order": "normal",
				"maximumEntries": 5,
				"interval": "10"
			},
			"classes": "default everyone"
		},
                {
                        "module": "MMM-DVB",
                        "position": "top_right",
                        "config": {
                                "stopName": "xxxx"
                        },
                        "classes": "default everyone"
                },
                {
                        "module": "MMM-DWD-WarnWeather",
                        "header": "Wetterwarnungen",
                        "position": "top_right",
                        "config": {
                                "region": "Stadt Dresden",
                                "changeColor": true,
                                "interval": 600000,
                                "loadingText": "Warnungen werden geladen...",
                                "noWarningText": "Keine Wetterwarnungen"
                        },
                        "classes": "default everyone"
                }
	],
	"ipWhitelist": [
		"127.0.0.1",
		"xxxx",
		"::ffff:xxxx",
		"::1"
	]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/ 
if (typeof module !== 'undefined') {module.exports = config;}
Thank you for any help. Ralf